nixpkgs/pkgs/development/python-modules/marionette-harness/manifestparser.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00

28 lines
535 B
Nix

{ lib
, stdenv
, 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 ];
};
}