python3Packages.requests-cache: 0.7.4 -> 0.8.1

This commit is contained in:
Fabian Affolter 2021-09-21 23:47:32 +02:00
parent 377600cefd
commit e76363e33a

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