Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 26 lines 526 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "manifestparser"; 9 version = "1.1"; 10 11 disabled = isPy3k; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "06cnj682ynacwpi63k1427vbf7ydnwh3dchc4b11yw8ii25wbc5d"; 16 }; 17 18 propagatedBuildInputs = [ ]; 19 20 meta = { 21 description = "Mozilla test manifest handling"; 22 homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase; 23 license = lib.licenses.mpl20; 24 maintainers = with lib.maintainers; [ raskin ]; 25 }; 26}