diff --git a/pkgs/development/python-modules/lru-dict/default.nix b/pkgs/development/python-modules/lru-dict/default.nix index 75921e8a8518..7ce32f9cdef5 100644 --- a/pkgs/development/python-modules/lru-dict/default.nix +++ b/pkgs/development/python-modules/lru-dict/default.nix @@ -2,19 +2,22 @@ , buildPythonPackage , fetchPypi , pytestCheckHook +, pythonOlder }: let pname = "lru-dict"; - version = "1.1.8"; + version = "1.2.0"; in buildPythonPackage { inherit pname version; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchPypi { inherit pname version; - hash = "sha256-h4vI70Bz5c+5U9/Bz0WF20HouBTAEGq9400A7g0LMRU="; + hash = "sha256-E8VngvGdaN302NsBcAQRkoWWFlFMcGsSbQ3y7HKhG9c="; }; nativeCheckInputs = [ @@ -28,6 +31,7 @@ buildPythonPackage { meta = with lib; { description = "Fast and memory efficient LRU cache for Python"; homepage = "https://github.com/amitdev/lru-dict"; + changelog = "https://github.com/amitdev/lru-dict/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ hexa ]; };