python312Packages.lmdb: 1.5.1 -> 1.6.2 (#374571)

This commit is contained in:
OTABI Tomoya
2025-01-18 17:13:48 +09:00
committed by GitHub
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
cffi,
lmdb,
@@ -10,18 +11,22 @@
buildPythonPackage rec {
pname = "lmdb";
version = "1.5.1";
format = "setuptools";
version = "1.6.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-cXwlWCfTMeAvckK0QFGqBkZskPbXMuywezHt+x4Gxno=";
hash = "sha256-0o4/pZk1/2iIWHYOxS8gLsuMEImj9o0fFi6jB40VHnM=";
};
build-system = [ setuptools ];
buildInputs = [ lmdb ];
pythonImportsCheck = [ "lmdb" ];
nativeCheckInputs = [
cffi
pytestCheckHook
@@ -29,12 +34,12 @@ buildPythonPackage rec {
LMDB_FORCE_SYSTEM = 1;
meta = with lib; {
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 = licenses.openldap;
maintainers = with maintainers; [
license = lib.licenses.openldap;
maintainers = with lib.maintainers; [
copumpkin
ivan
];