mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 03:48:57 +00:00
26 lines
538 B
Nix
26 lines
538 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "manifestparser";
|
||
|
version = "1.1";
|
||
|
name = "${pname}-${version}";
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|