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

28 lines
580 B
Nix
Raw Normal View History

{ stdenv
2017-05-21 17:28:30 +00:00
, buildPythonPackage
, fetchPypi
, isPy3k
2017-05-21 17:28:30 +00:00
, mozfile
}:
buildPythonPackage rec {
pname = "mozinfo";
2018-07-22 10:13:05 +00:00
version = "0.10";
2017-05-21 17:28:30 +00:00
src = fetchPypi {
inherit pname version;
2018-07-22 10:13:05 +00:00
sha256 = "dcd53a1b1793340418e1ae42bf300e3e56d8f12047972378c6f9318b220b1023";
2017-05-21 17:28:30 +00:00
};
disabled = isPy3k;
2017-05-21 17:28:30 +00:00
propagatedBuildInputs = [ mozfile ];
meta = with stdenv.lib; {
2017-05-21 17:28:30 +00:00
description = "System information utilities for Mozilla testing";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-08-28 09:40:27 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ raskin ];
2017-05-21 17:28:30 +00:00
};
}