python.pkgs.wcwidth: add setuptools

This commit is contained in:
Frederik Rietdijk 2020-06-19 14:36:16 +02:00
parent 41bd44e05d
commit 46dd569cd1

View File

@ -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
]; ];