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

33 lines
601 B
Nix
Raw Normal View History

2017-05-21 18:28:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
2017-05-21 18:28:30 +01:00
, blessings
, mozterm
, six
2017-05-21 18:28:30 +01:00
, mozfile
}:
buildPythonPackage rec {
pname = "mozlog";
2018-07-22 11:13:12 +01:00
version = "3.8";
2017-05-21 18:28:30 +01:00
disabled = isPy3k;
2017-05-21 18:28:30 +01:00
src = fetchPypi {
inherit pname version;
2018-08-05 08:04:14 +01:00
sha256 = "00x28z6diw06gakb5isbfha5z2n63yyncv4za303nsgzxvlihmx0";
2017-05-21 18:28:30 +01:00
};
propagatedBuildInputs = [ blessings mozterm six ];
checkInputs = [ mozfile ];
2017-05-21 18:28:30 +01:00
meta = {
description = "Mozilla logging library";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-05-21 18:28:30 +01:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}