nixpkgs/pkgs/development/python-modules/marionette-harness/marionette_driver.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

29 lines
596 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, mozversion
, mozrunner
}:
buildPythonPackage rec {
pname = "marionette_driver";
version = "2.7.0";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "15c77ba548847dc05ce1b663a22c3324623f217dce5a859c3aaced31fd16707b";
};
propagatedBuildInputs = [ mozversion mozrunner ];
meta = {
description = "Mozilla Marionette driver";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Marionette;
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}