blob: d298f53e4015698d944f218455868080d88bb191 (
about) (
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
45
46
47
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
cffi,
lmdb,
pythonOlder,
}:
buildPythonPackage rec {
pname = "lmdb";
version = "1.6.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-0o4/pZk1/2iIWHYOxS8gLsuMEImj9o0fFi6jB40VHnM=";
};
build-system = [ setuptools ];
buildInputs = [ lmdb ];
pythonImportsCheck = [ "lmdb" ];
nativeCheckInputs = [
cffi
pytestCheckHook
];
LMDB_FORCE_SYSTEM = 1;
meta = {
description = "Universal Python binding for the LMDB 'Lightning' Database";
homepage = "https://github.com/dw/py-lmdb";
changelog = "https://github.com/jnwatson/py-lmdb/blob/py-lmdb_${version}/ChangeLog";
license = lib.licenses.openldap;
maintainers = with lib.maintainers; [
copumpkin
ivan
];
};
}
|