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";
|
2021-03-24 02:28:15 -07:00
|
|
|
version = "3.1.0";
|
2019-01-18 03:28:26 -08:00
|
|
|
|
2018-09-02 17:20:50 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 02:28:15 -07:00
|
|
|
sha256 = "150dc8701207b28bc65a16f0e91c07250a8d1b9da324ce674c0e375774944f13";
|
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
|
|
|
}
|