python310Packages.kubernetes: 20.13.0 -> 23.6.0

This commit is contained in:
Sandro Jäckel 2022-05-30 06:09:24 +02:00 committed by Jonathan Ringer
parent 02c6c574f6
commit b885589e7d

View File

@ -12,6 +12,8 @@
, pyyaml
, requests
, requests-oauthlib
, setuptools
, six
, urllib3
, websocket-client
@ -22,7 +24,7 @@
buildPythonPackage rec {
pname = "kubernetes";
version = "20.13.0";
version = "23.6.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -31,8 +33,7 @@ buildPythonPackage rec {
owner = "kubernetes-client";
repo = "python";
rev = "v${version}";
sha256 = "sha256-zZb5jEQEluY1dfa7UegW+P7MV86ESqOey7kkC74ETlM=";
fetchSubmodules = true;
sha256 = "sha256-d6S7cMTiwIgqOcN9j3yeEXUNSro9I2b8HLJw1oGKjWI=";
};
propagatedBuildInputs = [
@ -43,6 +44,8 @@ buildPythonPackage rec {
pyyaml
requests
requests-oauthlib
setuptools
six
urllib3
websocket-client
];
@ -65,6 +68,6 @@ buildPythonPackage rec {
description = "Kubernetes Python client";
homepage = "https://github.com/kubernetes-client/python";
license = licenses.asl20;
maintainers = with maintainers; [ lsix ];
maintainers = with maintainers; [ lsix SuperSandro2000 ];
};
}