python311Packages.azure-mgmt-web: 7.1.0 -> 7.2.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-web_7.2.0/sdk/appservice/azure-mgmt-web/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-11-21 09:27:09 +01:00
parent 37e6adc926
commit 0f8f62e773

View file

@ -1,31 +1,28 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, azure-mgmt-nspkg , buildPythonPackage
, isPy3k , fetchPypi
, isodate
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-web"; pname = "azure-mgmt-web";
version = "7.1.0"; version = "7.2.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; hash = "sha256-78/m9/Ug7Qq8/oZRfhyM8CpxL3N6PbDbfLRsbWR5ge0=";
hash = "sha256-WxbN5+MNwgRmuRH/vEmlcljH7ylYRyxNz2Ev8aAS8Vw=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
msrest
msrestazure
azure-common azure-common
azure-mgmt-core azure-mgmt-core
] ++ lib.optionals (!isPy3k) [ isodate
azure-mgmt-nspkg
]; ];
# has no tests # has no tests
@ -34,6 +31,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Web Apps Management Client Library"; description = "This is the Microsoft Azure Web Apps Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-web_${version}/sdk/appservice/azure-mgmt-web/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ maxwilson ]; maintainers = with maintainers; [ maxwilson ];
}; };