1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 17:25:11 +00:00
nixpkgs/pkgs/development/python-modules/marionette-harness/mozlog.nix

34 lines
622 B
Nix
Raw Normal View History

2017-05-21 18:28:30 +01:00
{ lib
, stdenv
, 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-02-26 17:45:53 +00:00
version = "3.7";
2017-05-21 18:28:30 +01:00
disabled = isPy3k;
2017-05-21 18:28:30 +01:00
src = fetchPypi {
inherit pname version;
2018-02-26 17:45:53 +00:00
sha256 = "414141131c4f5e7242e69a939d2b74f4ed8dbac12bef93eee4e7125cd1a131e9";
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 ];
};
}