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

33 lines
603 B
Nix
Raw Normal View History

2017-05-21 17:28:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
2017-05-21 17:28:30 +00:00
, blessings
, mozterm
, six
2017-05-21 17:28:30 +00:00
, mozfile
}:
buildPythonPackage rec {
pname = "mozlog";
version = "5.0";
2017-05-21 17:28:30 +00:00
disabled = isPy3k;
2017-05-21 17:28:30 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0h1hgs13c1w0wvz60400i37m00077li1ky28j7kgx4bl75pkd3sw";
2017-05-21 17:28:30 +00:00
};
propagatedBuildInputs = [ blessings mozterm six ];
checkInputs = [ mozfile ];
2017-05-21 17:28:30 +00:00
meta = {
description = "Mozilla logging library";
homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase";
2017-05-21 17:28:30 +00:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}