Merge pull request #205065 from r-ryantm/auto-update/python310Packages.lmdb

python310Packages.lmdb: 1.3.0 -> 1.4.0
This commit is contained in:
Fabian Affolter
2022-12-09 11:21:46 +01:00
committed by GitHub
@@ -4,26 +4,36 @@
, pytestCheckHook
, cffi
, lmdb
, pythonOlder
}:
buildPythonPackage rec {
pname = "lmdb";
version = "1.3.0";
version = "1.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "60a11efc21aaf009d06518996360eed346f6000bfc9de05114374230879f992e";
hash = "sha256-OfbE7hRdKNFwJdNQcgq7b5XbgWUU6GjbV0RP3vUcu0c=";
};
buildInputs = [ lmdb ];
buildInputs = [
lmdb
];
checkInputs = [ cffi pytestCheckHook ];
checkInputs = [
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 ];
};