mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
pythonPackages.requests_oauth2: refactors dependencies
This commit is contained in:
parent
83c1e8a020
commit
a43f24cb4f
@ -21702,13 +21702,17 @@ 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_oauthlib ];
|
||||
propagatedBuildInputs = with self; [ requests2 ];
|
||||
# no tests in tarball
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Python's Requests OAuth2 (Open Authentication) plugin";
|
||||
|
Loading…
Reference in New Issue
Block a user