1{ stdenv, buildPythonPackage, fetchPypi
2, oauthlib, requests }:
3
4buildPythonPackage rec {
5 version = "1.0.0";
6 pname = "requests-oauthlib";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "8886bfec5ad7afb391ed5443b1f697c6f4ae98d0e5620839d8b4499c032ada3f";
11 };
12
13 doCheck = false; # Internet tests fail when building in chroot
14 propagatedBuildInputs = [ oauthlib requests ];
15
16 meta = with stdenv.lib; {
17 description = "OAuthlib authentication support for Requests";
18 homepage = https://github.com/requests/requests-oauthlib;
19 maintainers = with maintainers; [ prikhi ];
20 };
21}