My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ecs-logging/default.nix

40 lines
819 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ecs-logging";
version = "2.0.0";
format = "flit";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "elastic";
repo = "ecs-logging-python";
rev = "refs/tags/${version}";
sha256 = "sha256-2BfZ96D24sfjFD6l+gjp6xXbSJ0kjQD/FhHLI3bpVGM=";
};
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 ];
};
}