python2Packages.requests: Unbreak

This commit is contained in:
adisbladis 2021-03-04 09:43:37 +02:00
parent e336d3d636
commit 7fdf9d8bca
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -33,6 +33,9 @@ buildPythonPackage rec {
pytestCheckHook
];
# AttributeError: 'KeywordMapping' object has no attribute 'get'
doCheck = ! isPy27;
disabledTests = [
# Disable tests that require network access and use httpbin
"requests.api.request"
@ -56,7 +59,5 @@ buildPythonPackage rec {
homepage = "http://docs.python-requests.org/en/latest/";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
# AttributeError: 'KeywordMapping' object has no attribute 'get'
broken = isPy27;
};
}