python311Packages.cachetools: 5.3.0 -> 5.3.2

https://github.com/tkem/cachetools/blob/v5.3.2/CHANGELOG.rst
This commit is contained in:
Martin Weinelt 2023-11-28 21:23:52 +01:00
parent a91bcf877b
commit a1c4129514
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,14 +1,19 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
# build-system
, setuptools
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cachetools";
version = "5.3.0";
format = "setuptools";
version = "5.3.2";
pyproject = true;
disabled = pythonOlder "3.7";
@ -16,9 +21,13 @@ buildPythonPackage rec {
owner = "tkem";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-7MbP3jz17lGwjAeWo8QmS5v1vGqIQmYLbKVcK/q89Z4=";
hash = "sha256-CmyAW9uV63OV/zZsWwZkXOWbHfHAJdYFGJsRhpqQ1f4=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];