python3Packages.kubernetes: rename requests-oauthlib

This commit is contained in:
Fabian Affolter 2022-02-25 15:30:48 +01:00
parent 0a34a96698
commit efb1c8096e

View File

@ -11,7 +11,7 @@
, python-dateutil , python-dateutil
, pyyaml , pyyaml
, requests , requests
, requests_oauthlib , requests-oauthlib
, urllib3 , urllib3
, websocket-client , websocket-client
@ -24,6 +24,7 @@ buildPythonPackage rec {
pname = "kubernetes"; pname = "kubernetes";
version = "20.13.0"; version = "20.13.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -41,7 +42,7 @@ buildPythonPackage rec {
python-dateutil python-dateutil
pyyaml pyyaml
requests requests
requests_oauthlib requests-oauthlib
urllib3 urllib3
websocket-client websocket-client
]; ];
@ -61,7 +62,7 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
description = "Kubernetes python client"; description = "Kubernetes Python client";
homepage = "https://github.com/kubernetes-client/python"; homepage = "https://github.com/kubernetes-client/python";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ lsix ]; maintainers = with maintainers; [ lsix ];