mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 16:57:35 +00:00
Merge pull request #115932 from dotlambda/marisa-trie-cython
python39Packages.marisa-trie: fix
This commit is contained in:
commit
fde0082ca4
@ -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