Files
nixpkgs/pkgs/development/python-modules/datrie/default.nix
T

29 lines
720 B
Nix
Raw Normal View History

2018-04-03 13:23:05 +02:00
{ stdenv, buildPythonPackage, fetchPypi
2018-11-30 03:17:56 -05:00
, cython, pytest, pytestrunner, hypothesis }:
2018-04-03 13:23:05 +02:00
buildPythonPackage rec {
pname = "datrie";
version = "0.7.1";
src = fetchPypi {
inherit pname version;
sha256 = "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs";
};
2018-11-30 03:17:56 -05:00
nativeBuildInputs = [ cython ];
2018-04-03 13:23:05 +02:00
buildInputs = [ pytest pytestrunner hypothesis ];
2018-11-30 03:17:56 -05:00
# recompile pxd and pyx for python37
# https://github.com/pytries/datrie/issues/52
preBuild = ''
./update_c.sh
'';
2018-04-03 13:23:05 +02:00
meta = with stdenv.lib; {
description = "Super-fast, efficiently stored Trie for Python";
homepage = "https://github.com/kmike/datrie";
license = licenses.lgpl2;
maintainers = with maintainers; [ lewo ];
};
}