nixpkgs/pkgs/development/python-modules/requests-oauthlib.nix
Frederik Rietdijk ef4442e827 Python: replace requests2 with requests tree-wide
See f63eb58573

The `requests2` attribute now throws an error informing that `requests`
should be used instead.
2017-05-07 12:56:09 +02:00

22 lines
664 B
Nix

{ stdenv, buildPythonPackage, fetchurl
, oauthlib, requests }:
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 requests ];
meta = with stdenv.lib; {
description = "OAuthlib authentication support for Requests";
homepage = https://github.com/requests/requests-oauthlib;
maintainers = with maintainers; [ prikhi ];
};
}