2017-08-24 18:34:20 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-05-07 11:55:45 +01:00
|
|
|
, oauthlib, requests }:
|
2017-01-13 15:27:27 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-02-14 07:37:29 +00:00
|
|
|
version = "1.2.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "requests-oauthlib";
|
2017-01-13 15:27:27 +00:00
|
|
|
|
2017-08-24 18:34:20 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:29 +00:00
|
|
|
sha256 = "bd6533330e8748e94bf0b214775fed487d309b8b8fe823dc45641ebcd9a32f57";
|
2017-01-13 15:27:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # Internet tests fail when building in chroot
|
2017-05-07 11:55:45 +01:00
|
|
|
propagatedBuildInputs = [ oauthlib requests ];
|
2017-01-13 15:27:27 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "OAuthlib authentication support for Requests";
|
|
|
|
homepage = https://github.com/requests/requests-oauthlib;
|
|
|
|
maintainers = with maintainers; [ prikhi ];
|
|
|
|
};
|
|
|
|
}
|