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