summary refs log tree commit diff
path: root/pkgs/development/python-modules/jaraco_logging/default.nix
blob: 1ac7b48c0fab4c5797ea9f4b2b983aa3490d5acc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, buildPythonPackage, fetchPypi, setuptools_scm
, tempora, six, pytest
}:

buildPythonPackage rec {
  pname = "jaraco.logging";
  version = "2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1lb846j7qs1hgqwkyifv51nhl3f8jimbc4lk8yn9nkaynw0vyzcg";
  };

  patches = [ ./0001-Don-t-run-flake8-checks-during-the-build.patch ];

  buildInputs = [ setuptools_scm ];
  propagatedBuildInputs = [ tempora six ];
  checkInputs = [ pytest ];

  checkPhase = ''
    PYTHONPATH=".:$PYTHONPATH" pytest
  '';

  meta = with lib; {
    description = "Support for Python logging facility";
    homepage = "https://github.com/jaraco/jaraco.logging";
    license = licenses.mit;
  };
}