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
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-core
, azure-mgmt-nspkg
, isPy3k
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
}:
buildPythonPackage rec {
pname = "azure-mgmt-web";
version = "7.1.0";
version = "7.2.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-WxbN5+MNwgRmuRH/vEmlcljH7ylYRyxNz2Ev8aAS8Vw=";
hash = "sha256-78/m9/Ug7Qq8/oZRfhyM8CpxL3N6PbDbfLRsbWR5ge0=";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-core
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
isodate
];
# has no tests
@ -34,6 +31,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "This is the Microsoft Azure Web Apps Management Client Library";
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;
maintainers = with maintainers; [ maxwilson ];
};