python3Packages.lmdb: 1.7.5 -> 2.2.1 (#530867)

This commit is contained in:
dotlambda
2026-06-20 01:15:40 +00:00
committed by GitHub
@@ -9,14 +9,14 @@
lmdb,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "lmdb";
version = "1.7.5";
version = "2.2.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-8GBHUXYssJcFnVQSRExAV7lfOGx+2Vg2PPY/RT5RCNo=";
inherit (finalAttrs) pname version;
hash = "sha256-sgG0FvfWzqm9L5dyd6X1HW5SpDTW7FEaizSZDfKxqcU=";
};
build-system = [ setuptools ];
@@ -36,9 +36,8 @@ buildPythonPackage rec {
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";
changelog = "https://github.com/jnwatson/py-lmdb/blob/py-lmdb_${finalAttrs.version}/ChangeLog";
license = lib.licenses.openldap;
maintainers = [
];
maintainers = [ ];
};
}
})