Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 27 lines 558 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, nose 6}: 7 8buildPythonPackage rec { 9 version = "2.0.1"; 10 pname = "python-json-logger"; 11 disabled = isPy27; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "f26eea7898db40609563bed0a7ca11af12e2a79858632706d835a0f961b7d398"; 16 }; 17 18 checkInputs = [ nose ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/madzak/python-json-logger"; 22 description = "A python library adding a json log formatter"; 23 license = licenses.bsdOriginal; 24 maintainers = [ maintainers.costrouc ]; 25 }; 26 27}