pythonPackages.requests_oauthlib: 0.4.1 -> 0.7.0

This commit is contained in:
Jörg Thalheim 2017-01-13 16:27:27 +01:00
parent 14a65c5ecd
commit c6c5ed15ab
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 22 additions and 18 deletions

View 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 ];
};
}

View file

@ -22095,24 +22095,7 @@ in {
};
};
requests_oauthlib = buildPythonPackage rec {
version = "0.4.1";
name = "requests-oauthlib-${version}";
src = pkgs.fetchurl {
url = "http://github.com/requests/requests-oauthlib/archive/v${version}.tar.gz";
sha256 = "0vx252nzq5h9m9brwnw2ph8aj526y26jr2dqcafzzcdx6z4l8vj4";
};
doCheck = false; # Internet tests fail when building in chroot
propagatedBuildInputs = with self; [ oauthlib requests2 ];
meta = {
description = "OAuthlib authentication support for Requests";
homepage = https://github.com/requests/requests-oauthlib;
maintainers = with maintainers; [ prikhi ];
};
};
requests_oauthlib = callPackage ../development/python-modules/requests-oauthlib.nix { };
requests_toolbelt = buildPythonPackage rec {
version = "0.6.2";