Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 404 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "logutils"; 8 version = "0.3.5"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "bc058a25d5c209461f134e1f03cab637d66a7a5ccc12e593db56fbb279899a82"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Logging utilities"; 17 homepage = http://code.google.com/p/logutils/; 18 license = licenses.bsd0; 19 }; 20 21}