Merge pull request #251231 from fabaff/azure-mgmt-containerservice-bump

python311Packages.azure-mgmt-containerservice: 25.0.0 -> 26.0.0
This commit is contained in:
OTABI Tomoya 2023-08-25 12:28:31 +09:00 committed by GitHub
commit 1e44a037bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-core
, azure-mgmt-nspkg
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerservice";
version = "25.0.0";
version = "26.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-je7O92bklsbIlfsTUF2TXUqztAZxn8ep4ezCUHeLuhE=";
hash = "sha256-BpvnSqee5wodtMXPxo/pHCBk8Yy4yPnEdK164d9ILuM=";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-core
isodate
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
# has no tests