python3Packages.datrie: fix build (#51250)
This commit is contained in:
parent
76c7a8bac0
commit
cf1fb28991
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, pytest, pytestrunner, hypothesis}:
|
, cython, pytest, pytestrunner, hypothesis }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "datrie";
|
pname = "datrie";
|
||||||
@ -10,8 +10,15 @@ buildPythonPackage rec {
|
|||||||
sha256 = "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs";
|
sha256 = "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cython ];
|
||||||
buildInputs = [ pytest pytestrunner hypothesis ];
|
buildInputs = [ pytest pytestrunner hypothesis ];
|
||||||
|
|
||||||
|
# recompile pxd and pyx for python37
|
||||||
|
# https://github.com/pytries/datrie/issues/52
|
||||||
|
preBuild = ''
|
||||||
|
./update_c.sh
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Super-fast, efficiently stored Trie for Python";
|
description = "Super-fast, efficiently stored Trie for Python";
|
||||||
homepage = "https://github.com/kmike/datrie";
|
homepage = "https://github.com/kmike/datrie";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user