Merge pull request #177096 from SuperSandro2000/python310Packages.requests
python310Packages.requests: 2.27.1 -> 2.28.0
This commit is contained in:
commit
650410ef8b
1 changed files with 3 additions and 10 deletions
|
@ -1,7 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, pythonOlder
|
||||
, brotli
|
||||
, brotlicffi
|
||||
, buildPythonPackage
|
||||
, certifi
|
||||
|
@ -9,24 +7,22 @@
|
|||
, charset-normalizer
|
||||
, fetchPypi
|
||||
, idna
|
||||
, isPy27
|
||||
, isPy3k
|
||||
, pysocks
|
||||
, pytest-mock
|
||||
, pytest-xdist
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "requests";
|
||||
version = "2.27.1";
|
||||
|
||||
version = "2.28.0";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-aNfFb9WomZiHco7zBKbRLtx7508c+kdxT8i0FFJcmmE=";
|
||||
hash = "sha256-1WhyOn69JYddjR6vXfoGjNL8gZSy5IPXsffIGRjb7Gs=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -59,9 +55,6 @@ buildPythonPackage rec {
|
|||
]
|
||||
++ passthru.optional-dependencies.socks;
|
||||
|
||||
# AttributeError: 'KeywordMapping' object has no attribute 'get'
|
||||
doCheck = !isPy27;
|
||||
|
||||
disabledTests = [
|
||||
# Disable tests that require network access and use httpbin
|
||||
"requests.api.request"
|
||||
|
|
Loading…
Reference in a new issue