fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
818 B
Nix
37 lines
818 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 ];
|
|
};
|
|
}
|