nixpkgs/pkgs/development/python-modules/marionette-harness/mozfile.nix

29 lines
610 B
Nix
Raw Normal View History

2017-05-21 19:28:30 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
2017-05-21 19:28:30 +02:00
}:
buildPythonPackage rec {
pname = "mozfile";
2019-10-24 08:47:38 +02:00
version = "2.1.0";
2017-05-21 19:28:30 +02:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:38 +02:00
sha256 = "e5dc835582ea150e35ecd57e9d86cb707d3aa3b2505679db7332326dd49fd6b8";
2017-05-21 19:28:30 +02:00
};
propagatedBuildInputs = lib.optional isPy27 six;
2017-05-21 19:28:30 +02:00
# mozhttpd -> moznetwork -> mozinfo -> mozfile
doCheck = false;
meta = {
description = "File utilities for Mozilla testing";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-05-21 19:28:30 +02:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}