Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / marionette-harness / manifestparser.nix
blob45e24ec2e1a9ed64b7d0a555887f482436d49b77
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 }:
7 buildPythonPackage rec {
8   pname = "manifestparser";
9   version = "1.1";
11   disabled = isPy3k;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "06cnj682ynacwpi63k1427vbf7ydnwh3dchc4b11yw8ii25wbc5d";
16   };
18   propagatedBuildInputs = [ ];
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   };