1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00

pythonpackages.requests_oauth2: Remove dead package

This commit is contained in:
adisbladis 2017-10-28 22:31:44 +08:00
parent 1b55fc5922
commit 495b099818
No known key found for this signature in database
GPG key ID: ED58F95069B004F5

View file

@ -17762,27 +17762,6 @@ in {
};
};
requests_oauth2 = buildPythonPackage rec {
name = "requests-oauth2-0.1.1";
# python3 does not support relative imports
disabled = isPy3k;
src = pkgs.fetchurl {
url = https://github.com/maraujop/requests-oauth2/archive/0.1.1.tar.gz;
sha256 = "1aij66qg9j5j4vzyh64nbg72y7pcafgjddxsi865racsay43xfqg";
};
propagatedBuildInputs = with self; [ requests ];
# no tests in tarball
doCheck = false;
meta = {
description = "Python's Requests OAuth2 (Open Authentication) plugin";
homepage = https://github.com/maraujop/requests-oauth2;
};
};
restview = callPackage ../development/python-modules/restview { };
readme = buildPythonPackage rec {