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