mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
python39Packages.marisa-trie: fix
We need to run cython ourselves.
This commit is contained in:
parent
ee9b92ddf8
commit
c67fbae46a
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cython
|
||||
, pytestrunner
|
||||
, pytest
|
||||
, hypothesis
|
||||
@ -20,7 +21,11 @@ buildPythonPackage rec {
|
||||
--replace "hypothesis==" "hypothesis>="
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pytestrunner ];
|
||||
nativeBuildInputs = [ cython pytestrunner ];
|
||||
|
||||
preBuild = ''
|
||||
./update_cpp.sh
|
||||
'';
|
||||
|
||||
checkInputs = [ pytest hypothesis ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user