nixpkgs/pkgs/development/python-modules/logging-journald/default.nix

40 lines
776 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "logging-journald";
version = "0.6.7";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mosquito";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-RQ9opkAOZfhYuqOXJ2Mtnig8soL+lCveYH2YdXL1AGM=";
};
nativeBuildInputs = [
poetry-core
];
# Circular dependency with aiomisc
doCheck = false;
pythonImportsCheck = [
"logging_journald"
];
meta = with lib; {
description = "Logging handler for writing logs to the journald";
homepage = "https://github.com/mosquito/logging-journald";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}