mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.mozlog: correct dependencies
This commit is contained in:
parent
283002461b
commit
e459171f9a
1 changed files with 5 additions and 2 deletions
|
@ -4,13 +4,14 @@
|
|||
, fetchPypi
|
||||
, isPy3k
|
||||
, blessings
|
||||
, mozterm
|
||||
, six
|
||||
, mozfile
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mozlog";
|
||||
version = "3.7";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
|
@ -19,7 +20,9 @@ buildPythonPackage rec {
|
|||
sha256 = "414141131c4f5e7242e69a939d2b74f4ed8dbac12bef93eee4e7125cd1a131e9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ blessings mozfile ];
|
||||
propagatedBuildInputs = [ blessings mozterm six ];
|
||||
|
||||
checkInputs = [ mozfile ];
|
||||
|
||||
meta = {
|
||||
description = "Mozilla logging library";
|
||||
|
|
Loading…
Reference in a new issue