mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3Packages.datrie: 0.7.1 -> 0.8.2
This commit is contained in:
parent
a143a6dd34
commit
32804c0bae
1 changed files with 20 additions and 17 deletions
|
@ -1,36 +1,39 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, fetchpatch
|
{ lib
|
||||||
, cython, pytest, pytestrunner, hypothesis }:
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, cython
|
||||||
|
, pytestCheckHook
|
||||||
|
, hypothesis
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "datrie";
|
pname = "datrie";
|
||||||
version = "0.7.1";
|
version = "0.8.2";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs";
|
sha256 = "sha256-UlsI9jjVz2EV32zNgY5aASmM0jCy2skcj/LmSZ0Ydl0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
nativeBuildInputs = [
|
||||||
# fix tests against recent hypothesis
|
cython
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/pytries/datrie/commit/9b24b4c02783cdb703ac3f6c6d7d881db93166e0.diff";
|
|
||||||
sha256 = "1ql7jcf57q3x3fcbddl26y9kmnbnj2dv6ga8mwq94l4a3213j2iy";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cython ];
|
buildInputs = [
|
||||||
buildInputs = [ pytest pytestrunner hypothesis ];
|
hypothesis
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
# recompile pxd and pyx for python37
|
postPatch = ''
|
||||||
# https://github.com/pytries/datrie/issues/52
|
substituteInPlace setup.py --replace '"pytest-runner", ' ""
|
||||||
preBuild = ''
|
|
||||||
./update_c.sh
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "datrie" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with 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";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl21Plus;
|
||||||
maintainers = with maintainers; [ lewo ];
|
maintainers = with maintainers; [ lewo ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue