Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools 5, setuptools-scm 6, tempora 7, six 8}: 9 10buildPythonPackage rec { 11 pname = "jaraco-logging"; 12 version = "3.1.2"; 13 format = "pyproject"; 14 15 src = fetchPypi { 16 pname = "jaraco.logging"; 17 inherit version; 18 hash = "sha256-k6cLizdnd5rWx7Vu6YV5ztd7afFqu8rnSfYsLFnmeTE="; 19 }; 20 21 pythonNamespaces = [ "jaraco" ]; 22 23 nativeBuildInputs = [ 24 setuptools 25 setuptools-scm 26 ]; 27 28 propagatedBuildInputs = [ 29 tempora 30 six 31 ]; 32 33 # test no longer packaged with pypi 34 doCheck = false; 35 36 pythonImportsCheck = [ "jaraco.logging" ]; 37 38 meta = with lib; { 39 description = "Support for Python logging facility"; 40 homepage = "https://github.com/jaraco/jaraco.logging"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ ]; 43 }; 44}