1{ lib, buildPythonPackage, fetchPypi, setuptools_scm
2, tempora, six
3}:
4
5buildPythonPackage rec {
6 pname = "jaraco.logging";
7 version = "3.0.0";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "31716fe84d3d5df39d95572942513bd4bf8ae0a478f64031eff4c2ea9e83434e";
12 };
13
14 nativeBuildInputs = [ setuptools_scm ];
15 propagatedBuildInputs = [ tempora six ];
16
17 # test no longer packaged with pypi
18 doCheck = false;
19
20 pythonImportsCheck = [ "jaraco.logging" ];
21
22 meta = with lib; {
23 description = "Support for Python logging facility";
24 homepage = "https://github.com/jaraco/jaraco.logging";
25 license = licenses.mit;
26 };
27}