python3Packages.azure-mgmt-containerservice: 40.0.0 -> 40.1.0 (#462396)

This commit is contained in:
Fabian Affolter
2025-11-17 09:55:23 +00:00
committed by GitHub

View File

@@ -5,21 +5,18 @@
fetchPypi, fetchPypi,
msrest, msrest,
typing-extensions, typing-extensions,
pythonOlder,
setuptools, setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-containerservice"; pname = "azure-mgmt-containerservice";
version = "40.0.0"; version = "40.1.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi { src = fetchPypi {
pname = "azure_mgmt_containerservice"; pname = "azure_mgmt_containerservice";
inherit version; inherit version;
hash = "sha256-bFKgzV1VUg7wKOqQtyvY0TKPgNDOaXQ072HFBoYmr28="; hash = "sha256-iabK9QfTQN9HLcjc/iF8HgmM3Y5xNT24ku/ChDMOL44=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];