blob: f2864641e1e59de47b7d19e84495702da06d6cf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
cymem,
cython,
fetchPypi,
murmurhash,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "preshed";
version = "3.0.12";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-tz+ai1TuHURSnMYBg1aJbP+T1I91XynBNHNNk3HA1oU=";
};
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [
cymem
murmurhash
];
nativeCheckInputs = [ pytestCheckHook ];
# Tests have import issues with 3.0.8
doCheck = false;
pythonImportsCheck = [ "preshed" ];
# don't update to 4.0.0, version was yanked
passthru.skipBulkUpdate = true;
meta = {
description = "Cython hash tables that assume keys are pre-hashed";
homepage = "https://github.com/explosion/preshed";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|