mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #138846 from fabaff/bump-requests-cache
This commit is contained in:
commit
81a4a694d1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user