mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
27 lines
528 B
Nix
27 lines
528 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "manifestparser";
|
|
version = "1.1";
|
|
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "06cnj682ynacwpi63k1427vbf7ydnwh3dchc4b11yw8ii25wbc5d";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ];
|
|
|
|
meta = {
|
|
description = "Mozilla test manifest handling";
|
|
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
};
|
|
}
|