python3Packages.cwcwidth: fix build needing setuptools
This commit is contained in:
parent
ceb78d53dc
commit
029b261fb3
1 changed files with 2 additions and 2 deletions
|
@ -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 = ''
|
||||||
|
|
Loading…
Reference in a new issue