Merge pull request #138846 from fabaff/bump-requests-cache

This commit is contained in:
Sandro 2021-09-22 22:34:42 +02:00 committed by GitHub
commit 81a4a694d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,8 @@
{ lib
, appdirs
, attrs
, buildPythonPackage
, bson
, cattrs
, fetchFromGitHub
, itsdangerous
@ -18,15 +20,16 @@
buildPythonPackage rec {
pname = "requests-cache";
version = "0.7.4";
disabled = pythonOlder "3.6";
version = "0.8.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "reclosedev";
repo = "requests-cache";
rev = "v${version}";
sha256 = "sha256-FndKFdmEsp3TF2W4b7nhARi9ZOutlE43vvzYxiwbL08=";
sha256 = "sha256-HzOcPWmvUhqPtb/7Mnw6wWY7a4CwGRwPgq+7QoHJAc8=";
};
nativeBuildInputs = [
@ -34,7 +37,9 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
appdirs
attrs
bson
cattrs
itsdangerous
pyyaml