Merge pull request #115932 from dotlambda/marisa-trie-cython

python39Packages.marisa-trie: fix
This commit is contained in:
Sandro
2021-03-11 21:36:18 +01:00
committed by GitHub

View File

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