Skip to content

Commit

Permalink
Merge pull request #115048 from adisbladis/unbreak-requests
Browse files Browse the repository at this point in the history
python2Packages.requests: Unbreak
  • Loading branch information
adisbladis committed Mar 4, 2021
2 parents e336d3d + 7fdf9d8 commit 893a78f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/requests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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;
};
}

0 comments on commit 893a78f

Please sign in to comment.