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
, isodate
, pythonOlder
, typing-extensions
, setuptools
}:
buildPythonPackage rec {
pname = "azure-mgmt-network";
version = "25.2.0";
format = "setuptools";
version = "25.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-EUxCktIjsdHiR7Qa9luNWjeTVn5q2/ojB3IFUiP0GCo=";
hash = "sha256-3OLK+xrg5WPgte/FN9yYp8Ctgk1CYeZL7XX3iBlt1cY=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
azure-common
azure-mgmt-core
isodate
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
# Module has no tests
@ -41,7 +43,8 @@ buildPythonPackage rec {
meta = with lib; {
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;
maintainers = with maintainers; [ olcai maxwilson jonringer ];
};