about summary refs log tree commit diff
path: root/pkgs/development/python-modules/requests-oauthlib.nix
blob: a353ebd39d9b235d1e4e2cb7da90238674538742 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
}