1{ stdenv, buildPythonPackage, fetchPypi
2, pytest, pytestrunner, hypothesis}:
3
4buildPythonPackage rec {
5 pname = "datrie";
6 version = "0.7.1";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs";
11 };
12
13 buildInputs = [ pytest pytestrunner hypothesis ];
14
15 meta = with stdenv.lib; {
16 description = "Super-fast, efficiently stored Trie for Python";
17 homepage = "https://github.com/kmike/datrie";
18 license = licenses.lgpl2;
19 maintainers = with maintainers; [ lewo ];
20 };
21}