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

python311Packages.azure-mgmt-containerservice: 29.0.0 -> 29.1.0
This commit is contained in:
Fabian Affolter 2024-02-22 08:34:13 +01:00 committed by GitHub
commit 38d3fb762d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,27 +6,29 @@
, fetchPypi
, isodate
, pythonOlder
, typing-extensions
, setuptools
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerservice";
version = "29.0.0";
format = "setuptools";
version = "29.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-0BiuK5JCj6rqfSYD8+GWca2k5SQ19MXEHR3TQcYzgoA=";
hash = "sha256-RohxeLsQNZM/BvpjEhwaydTFhx8gKuK4a8Svbh47NU8=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
azure-common
azure-mgmt-core
isodate
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
# has no tests
@ -38,7 +40,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "This is the Microsoft Azure Container Service Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerservice/azure-mgmt-containerservice";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerservice_${version}/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];