nixpkgs/pkgs/development/python-modules/ecs-logging/default.nix
2023-09-22 21:11:16 +02:00

41 lines
822 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ecs-logging";
version = "2.1.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "elastic";
repo = "ecs-logging-python";
rev = "refs/tags/${version}";
hash = "sha256-Gf44bT3/gmHy+yaQ1+bhCFB33ym2G14tzNqTQyC3BJU=";
};
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 ];
};
}