python.pkgs.wcwidth: add setuptools
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
|
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
|
||||||
, isPy3k
|
, isPy3k
|
||||||
, backports_functools_lru_cache
|
, backports_functools_lru_cache
|
||||||
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@@ -14,7 +15,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
propagatedBuildInputs = lib.optionals (!isPy3k) [
|
propagatedBuildInputs = [ setuptools ] ++ lib.optionals (!isPy3k) [
|
||||||
backports_functools_lru_cache
|
backports_functools_lru_cache
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user