python3Packages.cwcwidth: fix build needing setuptools

This commit is contained in:
Frederik Rietdijk 2022-09-16 10:42:22 +02:00
parent ceb78d53dc
commit 029b261fb3

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, cython, pytestCheckHook }: { lib, buildPythonPackage, fetchPypi, cython, pytestCheckHook, setuptools }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "cwcwidth"; pname = "cwcwidth";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "sha256-wNZH4S46SxWogeHYT3lpN1FmSEieARJXI33CF51rGVE="; sha256 = "sha256-wNZH4S46SxWogeHYT3lpN1FmSEieARJXI33CF51rGVE=";
}; };
nativeBuildInputs = [ cython ]; nativeBuildInputs = [ cython setuptools ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
preCheck = '' preCheck = ''