Files
nixpkgs/pkgs/development/python-modules/marionette-harness/manifestparser.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
559 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
}:
buildPythonPackage rec {
pname = "manifestparser";
version = "1.1";
format = "setuptools";
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 ];
};
}