pythonPackages.requests_oauthlib: 0.4.1 -> 0.7.0
This commit is contained in:
21
pkgs/development/python-modules/requests-oauthlib.nix
Normal file
21
pkgs/development/python-modules/requests-oauthlib.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl
|
||||
, oauthlib, requests2 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.7.0";
|
||||
name = "requests-oauthlib-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://github.com/requests/requests-oauthlib/archive/v${version}.tar.gz";
|
||||
sha256 = "0cdn45k7qla0qwha0rm9pk9bcfhghvmqrdsphs73irs2rzk5cp2j";
|
||||
};
|
||||
|
||||
doCheck = false; # Internet tests fail when building in chroot
|
||||
propagatedBuildInputs = [ oauthlib requests2 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "OAuthlib authentication support for Requests";
|
||||
homepage = https://github.com/requests/requests-oauthlib;
|
||||
maintainers = with maintainers; [ prikhi ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user