Merge pull request #306720 from r-ryantm/auto-update/python311Packages.azure-mgmt-compute

python311Packages.azure-mgmt-compute: 30.6.0 -> 31.0.0
This commit is contained in:
Fabian Affolter 2024-04-26 09:08:00 +02:00 committed by GitHub
commit e3900da73a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,49 +1,49 @@
{ lib {
, azure-mgmt-common lib,
, azure-mgmt-core azure-mgmt-common,
, buildPythonPackage azure-mgmt-core,
, fetchPypi buildPythonPackage,
, isodate fetchPypi,
, pythonOlder isodate,
, typing-extensions pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-compute"; pname = "azure-mgmt-compute";
version = "30.6.0"; version = "31.0.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-TYDXI+xtTLlYNhfr7AcW59dLJzKsuu0CPtLjzHBT0A4="; hash = "sha256-WlscT8GhnssCKhLe0b6LGxVfaXnQP7nvwEZC9gZkS78=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
azure-mgmt-common azure-mgmt-common
azure-mgmt-core azure-mgmt-core
isodate isodate
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
]; ];
pythonNamespaces = [ pythonNamespaces = [ "azure.mgmt" ];
"azure.mgmt"
];
# Module has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "azure.mgmt.compute" ];
"azure.mgmt.compute"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Compute Management Client Library"; description = "This is the Microsoft Azure Compute Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-compute";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ olcai maxwilson ]; maintainers = with maintainers; [
olcai
maxwilson
];
}; };
} }