python3Packages.cachecontrol: 0.14.3 -> 0.14.4 (#462089)

This commit is contained in:
dotlambda
2025-11-16 16:35:59 +00:00
committed by GitHub

View File

@@ -3,18 +3,17 @@
buildPythonPackage, buildPythonPackage,
cherrypy, cherrypy,
fetchFromGitHub, fetchFromGitHub,
flit-core,
filelock, filelock,
mock,
msgpack, msgpack,
pytestCheckHook, pytestCheckHook,
redis, redis,
requests, requests,
uv-build,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "cachecontrol"; pname = "cachecontrol";
version = "0.14.3"; version = "0.14.4";
pyproject = true; pyproject = true;
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
@@ -23,10 +22,10 @@ buildPythonPackage rec {
owner = "ionrock"; owner = "ionrock";
repo = "cachecontrol"; repo = "cachecontrol";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-V8RWTDxhKCvf5bz2j6anp8bkCzkicTRY+Kd6eHu1peg="; hash = "sha256-627SqJocVOO0AfI8vswPqOr15MA/Lx7RLAdRAXzWu84=";
}; };
build-system = [ flit-core ]; build-system = [ uv-build ];
dependencies = [ dependencies = [
msgpack msgpack
@@ -40,9 +39,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
cherrypy cherrypy
mock
pytestCheckHook pytestCheckHook
requests
] ]
++ lib.flatten (builtins.attrValues optional-dependencies); ++ lib.flatten (builtins.attrValues optional-dependencies);