nixpkgs/pkgs/development/python-modules/marionette-harness/mozinfo.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
567 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, mozfile
}:
buildPythonPackage rec {
pname = "mozinfo";
version = "0.9";
src = fetchPypi {
inherit pname version;
sha256 = "1jwhnhbj7xipwh33wf7m12pw5g662dpr1chkp6p2fmy0mwpn2y4z";
};
disabled = isPy3k;
propagatedBuildInputs = [ mozfile ];
meta = with stdenv.lib; {
description = "System information utilities for Mozilla testing";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
license = licenses.mpl20;
maintainers = with maintainers; [ raskin ];
};
}