python3Packages.cachetools: 6.1.0 -> 6.2.2

Diff: https://github.com/tkem/cachetools/compare/v6.1.0...v6.2.2

Changelog: https://github.com/tkem/cachetools/blob/v6.2.2/CHANGELOG.rst
This commit is contained in:
Robert Schütz
2025-11-26 11:39:07 -08:00
parent a4ce35fd24
commit 10ade4265d
@@ -2,23 +2,20 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cachetools";
version = "6.1.0";
version = "6.2.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tkem";
repo = "cachetools";
tag = "v${version}";
hash = "sha256-o3Ice6w7Ovot+nsmTpsl/toosZuVbi9RvRGs07W4H0Y=";
hash = "sha256-seoyqkrRQpRiMd5GTEvenjirn173Hq40Zuk1u7TvMPI=";
};
build-system = [ setuptools ];