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