pythonPackages.mozlog: correct dependencies

This commit is contained in:
Robert Schütz 2018-02-26 23:59:46 +01:00
parent 283002461b
commit e459171f9a

View file

@ -4,13 +4,14 @@
, fetchPypi , fetchPypi
, isPy3k , isPy3k
, blessings , blessings
, mozterm
, six
, mozfile , mozfile
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "mozlog"; pname = "mozlog";
version = "3.7"; version = "3.7";
name = "${pname}-${version}";
disabled = isPy3k; disabled = isPy3k;
@ -19,7 +20,9 @@ buildPythonPackage rec {
sha256 = "414141131c4f5e7242e69a939d2b74f4ed8dbac12bef93eee4e7125cd1a131e9"; sha256 = "414141131c4f5e7242e69a939d2b74f4ed8dbac12bef93eee4e7125cd1a131e9";
}; };
propagatedBuildInputs = [ blessings mozfile ]; propagatedBuildInputs = [ blessings mozterm six ];
checkInputs = [ mozfile ];
meta = { meta = {
description = "Mozilla logging library"; description = "Mozilla logging library";