Skip to content

Commit

Permalink
python.pkgs.wcwidth: add setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Jun 19, 2020
1 parent 41bd44e commit 46dd569
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/wcwidth/default.nix
@@ -1,6 +1,7 @@
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
, isPy3k
, backports_functools_lru_cache
, setuptools
}:

buildPythonPackage rec {
Expand All @@ -14,7 +15,7 @@ buildPythonPackage rec {

checkInputs = [ pytestCheckHook ];

propagatedBuildInputs = lib.optionals (!isPy3k) [
propagatedBuildInputs = [ setuptools ] ++ lib.optionals (!isPy3k) [
backports_functools_lru_cache
];

Expand Down

0 comments on commit 46dd569

Please sign in to comment.