11 buildPythonPackage rec {
12 pname = "requests-oauthlib";
16 inherit pname version;
17 hash = "sha256-db6sSkeIHuuU1epdatMe+IhWr/4jMrmq+1LGRSzPDXo=";
20 propagatedBuildInputs = [ oauthlib requests ];
28 # Exclude tests which require network access
30 "testCanPostBinaryData"
31 "test_content_type_override"
32 "test_url_is_native_str"
35 pythonImportsCheck = [ "requests_oauthlib" ];
38 description = "OAuthlib authentication support for Requests";
39 homepage = "https://github.com/requests/requests-oauthlib";
40 license = with licenses; [ isc ];
41 maintainers = with maintainers; [ prikhi ];