python3Packages.ecs-logging: init at 1.1.0

main
Fabian Affolter 3 years ago
parent 5e4feb3c2d
commit 88666041df
  1. 40
      pkgs/development/python-modules/ecs-logging/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save