Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 19 lines 495 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "Autologging"; 5 version = "1.2.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "16v2k16m433fxlvl7f0081n67rpxhs2hyn1ivkx1xs5qjxpv5n3k"; 10 extension = "zip"; 11 }; 12 13 meta = with stdenv.lib; { 14 homepage = http://ninthtest.info/python-autologging/; 15 description = "Easier logging and tracing for Python classes"; 16 license = licenses.mit; 17 maintainers = with maintainers; [ twey ]; 18 }; 19}