mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
41 lines
804 B
Nix
41 lines
804 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|