Merge pull request #290595 from fabaff/azure-mgmt-network-bump

python311Packages.azure-mgmt-network: 25.2.0 -> 25.3.0
This commit is contained in:
Fabian Affolter 2024-02-22 23:01:59 +01:00 committed by GitHub
commit 73063faca7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,27 +5,29 @@
, fetchPypi , fetchPypi
, isodate , isodate
, pythonOlder , pythonOlder
, typing-extensions , setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-network"; pname = "azure-mgmt-network";
version = "25.2.0"; version = "25.3.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-EUxCktIjsdHiR7Qa9luNWjeTVn5q2/ojB3IFUiP0GCo="; hash = "sha256-3OLK+xrg5WPgte/FN9yYp8Ctgk1CYeZL7XX3iBlt1cY=";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-common
azure-mgmt-core azure-mgmt-core
isodate isodate
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
]; ];
# Module has no tests # Module has no tests
@ -41,7 +43,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-network";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-network_${version}/sdk/network/azure-mgmt-network/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ olcai maxwilson jonringer ]; maintainers = with maintainers; [ olcai maxwilson jonringer ];
}; };