f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
42 lines
802 B
Nix
42 lines
802 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
cffi,
|
|
lmdb,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lmdb";
|
|
version = "1.5.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-cXwlWCfTMeAvckK0QFGqBkZskPbXMuywezHt+x4Gxno=";
|
|
};
|
|
|
|
buildInputs = [ lmdb ];
|
|
|
|
nativeCheckInputs = [
|
|
cffi
|
|
pytestCheckHook
|
|
];
|
|
|
|
LMDB_FORCE_SYSTEM = 1;
|
|
|
|
meta = with lib; {
|
|
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 = licenses.openldap;
|
|
maintainers = with maintainers; [
|
|
copumpkin
|
|
ivan
|
|
];
|
|
};
|
|
}
|