Unverified Commit 256a9a03 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

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

parents e106e148 6f23c1cb
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -3,18 +3,17 @@
  buildPythonPackage,
  cherrypy,
  fetchFromGitHub,
  flit-core,
  filelock,
  mock,
  msgpack,
  pytestCheckHook,
  redis,
  requests,
  uv-build,
}:

buildPythonPackage rec {
  pname = "cachecontrol";
  version = "0.14.3";
  version = "0.14.4";
  pyproject = true;

  __darwinAllowLocalNetworking = true;
@@ -23,10 +22,10 @@ buildPythonPackage rec {
    owner = "ionrock";
    repo = "cachecontrol";
    tag = "v${version}";
    hash = "sha256-V8RWTDxhKCvf5bz2j6anp8bkCzkicTRY+Kd6eHu1peg=";
    hash = "sha256-627SqJocVOO0AfI8vswPqOr15MA/Lx7RLAdRAXzWu84=";
  };

  build-system = [ flit-core ];
  build-system = [ uv-build ];

  dependencies = [
    msgpack
@@ -40,9 +39,7 @@ buildPythonPackage rec {

  nativeCheckInputs = [
    cherrypy
    mock
    pytestCheckHook
    requests
  ]
  ++ lib.flatten (builtins.attrValues optional-dependencies);