python3Packages.ecs-logging: init at 1.1.0

This commit is contained in:
Fabian Affolter 2021-12-12 17:28:53 +01:00
parent 5e4feb3c2d
commit 88666041df
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ecs-logging";
version = "1.1.0";
format = "flit";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "elastic";
repo = "ecs-logging-python";
rev = version;
sha256 = "sha256-UcQh/+K2d4tiMZaz4IAZ2w/B88vEkHoq2LCPMNZ95Mo=";
};
nativeBuildInputs = [
flit-core
];
# Circular dependency elastic-apm
doCheck = false;
pythonImportsCheck = [
"ecs_logging"
];
meta = with lib; {
description = "Logging formatters for the Elastic Common Schema (ECS) in Python";
homepage = "https://github.com/elastic/ecs-logging-python";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2430,6 +2430,8 @@ in {
ecpy = callPackage ../development/python-modules/ecpy { };
ecs-logging = callPackage ../development/python-modules/ecs-logging { };
ed25519 = callPackage ../development/python-modules/ed25519 { };
editables = callPackage ../development/python-modules/editables { };