Merge pull request #200912 from fabaff/responses-bump

python310Packages.responses: 0.21.0 -> 0.22.0
This commit is contained in:
Fabian Affolter 2022-12-05 19:10:10 +01:00 committed by GitHub
commit 3754f95007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,20 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-localserver
, pytest-asyncio
, pytest-httpserver
, pytestCheckHook
, pythonOlder
, requests
, toml
, types-toml
, typing-extensions
, urllib3
}:
buildPythonPackage rec {
pname = "responses";
version = "0.21.0";
version = "0.22.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,16 +25,22 @@ buildPythonPackage rec {
owner = "getsentry";
repo = pname;
rev = version;
hash = "sha256-qYohrXrQkUBPo7yC+ZOwidDaCg/2nteXKAOCUvR4k2Q=";
hash = "sha256-VOIpowxPvYmufnj9MM/vMtZQDIOxorAhMCNK0fX/j1U=";
};
propagatedBuildInputs = [
requests
toml
types-toml
urllib3
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
checkInputs = [
pytest-localserver
pytest-asyncio
pytest-httpserver
pytestCheckHook
];