1{ lib 2, azure-common 3, azure-mgmt-core 4, buildPythonPackage 5, fetchPypi 6, isodate 7, pythonOlder 8}: 9 10buildPythonPackage rec { 11 pname = "azure-mgmt-web"; 12 version = "7.2.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.8"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-78/m9/Ug7Qq8/oZRfhyM8CpxL3N6PbDbfLRsbWR5ge0="; 20 }; 21 22 propagatedBuildInputs = [ 23 azure-common 24 azure-mgmt-core 25 isodate 26 ]; 27 28 # has no tests 29 doCheck = false; 30 31 meta = with lib; { 32 description = "This is the Microsoft Azure Web Apps Management Client Library"; 33 homepage = "https://github.com/Azure/azure-sdk-for-python"; 34 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-web_${version}/sdk/appservice/azure-mgmt-web/CHANGELOG.md"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ maxwilson ]; 37 }; 38}