mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:03:22 +00:00
Merge pull request #115048 from adisbladis/unbreak-requests
python2Packages.requests: Unbreak
This commit is contained in:
commit
893a78f411
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue