Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.lmdb: 1.6.2 -> 1.7.3

https://github.com/jnwatson/py-lmdb/blob/py-lmdb_1.7.3/ChangeLog

This commit was automatically generated using update-python-libraries.

+7 -4
+7 -4
pkgs/development/python-modules/lmdb/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchPypi, 5 5 setuptools, 6 + patch-ng, 6 7 pytestCheckHook, 7 8 cffi, 8 9 lmdb, ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "lmdb"; 14 - version = "1.6.2"; 15 + version = "1.7.3"; 15 16 pyproject = true; 16 17 17 18 disabled = pythonOlder "3.7"; 18 19 19 20 src = fetchPypi { 20 21 inherit pname version; 21 - hash = "sha256-0o4/pZk1/2iIWHYOxS8gLsuMEImj9o0fFi6jB40VHnM="; 22 + hash = "sha256-1KJ7evT+OPNAnZ+/v0e2F7PZTe6YoAvIwqgzbM0/mxU="; 22 23 }; 23 24 24 25 build-system = [ setuptools ]; 25 26 26 27 buildInputs = [ lmdb ]; 27 28 29 + env.LMDB_FORCE_SYSTEM = 1; 30 + 31 + dependencies = [ patch-ng ]; 32 + 28 33 pythonImportsCheck = [ "lmdb" ]; 29 34 30 35 nativeCheckInputs = [ 31 36 cffi 32 37 pytestCheckHook 33 38 ]; 34 - 35 - LMDB_FORCE_SYSTEM = 1; 36 39 37 40 meta = { 38 41 description = "Universal Python binding for the LMDB 'Lightning' Database";