mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +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
|
, 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";
|
||||||
|
|
Loading…
Reference in a new issue