2019-01-18 03:28:26 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, setuptools_scm
|
2020-06-22 17:49:22 -07:00
|
|
|
, tempora, six
|
2019-03-10 08:44:31 -07:00
|
|
|
}:
|
2018-09-02 17:20:50 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jaraco.logging";
|
2020-06-05 23:47:14 -07:00
|
|
|
version = "3.0.0";
|
2019-01-18 03:28:26 -08:00
|
|
|
|
2018-09-02 17:20:50 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:14 -07:00
|
|
|
sha256 = "31716fe84d3d5df39d95572942513bd4bf8ae0a478f64031eff4c2ea9e83434e";
|
2018-09-02 17:20:50 -07:00
|
|
|
};
|
2019-01-18 03:28:26 -08:00
|
|
|
|
2020-11-20 10:53:49 -08:00
|
|
|
pythonNamespaces = [ "jaraco" ];
|
|
|
|
|
2020-06-22 17:49:22 -07:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
2018-09-02 17:20:50 -07:00
|
|
|
propagatedBuildInputs = [ tempora six ];
|
2019-01-18 03:28:26 -08:00
|
|
|
|
2020-06-22 17:49:22 -07:00
|
|
|
# test no longer packaged with pypi
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "jaraco.logging" ];
|
2019-01-18 03:28:26 -08:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Support for Python logging facility";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/jaraco/jaraco.logging";
|
2019-01-18 03:28:26 -08:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2018-09-02 17:20:50 -07:00
|
|
|
}
|