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

34 lines
622 B
Nix
Raw Normal View History

2017-05-21 20:28:30 +03:00
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
2017-05-21 20:28:30 +03:00
, blessings
, mozterm
, six
2017-05-21 20:28:30 +03:00
, mozfile
}:
buildPythonPackage rec {
pname = "mozlog";
2018-02-26 20:45:53 +03:00
version = "3.7";
2017-05-21 20:28:30 +03:00
disabled = isPy3k;
2017-05-21 20:28:30 +03:00
src = fetchPypi {
inherit pname version;
2018-02-26 20:45:53 +03:00
sha256 = "414141131c4f5e7242e69a939d2b74f4ed8dbac12bef93eee4e7125cd1a131e9";
2017-05-21 20:28:30 +03:00
};
propagatedBuildInputs = [ blessings mozterm six ];
checkInputs = [ mozfile ];
2017-05-21 20:28:30 +03:00
meta = {
description = "Mozilla logging library";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
2017-05-21 20:28:30 +03:00
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ raskin ];
};
}