biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / logging-journald / default.nix
blob51ba2cce6ea1b326f7a43c7474a8e619be77e66e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "logging-journald";
11   version = "0.6.7";
12   format = "pyproject";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "mosquito";
18     repo = pname;
19     rev = "refs/tags/${version}";
20     hash = "sha256-RQ9opkAOZfhYuqOXJ2Mtnig8soL+lCveYH2YdXL1AGM=";
21   };
23   nativeBuildInputs = [ poetry-core ];
25   # Circular dependency with aiomisc
26   doCheck = false;
28   pythonImportsCheck = [ "logging_journald" ];
30   meta = with lib; {
31     description = "Logging handler for writing logs to the journald";
32     homepage = "https://github.com/mosquito/logging-journald";
33     license = licenses.mit;
34     maintainers = with maintainers; [ fab ];
35   };