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