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 {
|
2018-06-12 17:47:06 +01:00
|
|
|
version = "1.0.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;
|
2018-06-12 17:47:06 +01:00
|
|
|
sha256 = "8886bfec5ad7afb391ed5443b1f697c6f4ae98d0e5620839d8b4499c032ada3f";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|