1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/marionette-harness/mozfile.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
570 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "mozfile";
version = "1.2";
src = fetchPypi {
inherit pname version;
sha256 = "0mz941np62mg0zncy74d8fbq9fafsxjsxlwdsydl92badhrhzc6k";
};
propagatedBuildInputs = [ ];
# mozhttpd -> moznetwork -> mozinfo -> mozfile
doCheck = false;
meta = {
description = "File utilities for Mozilla testing";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}