1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 azure-mgmt-nspkg,
6 buildPythonPackage,
7 fetchPypi,
8 isodate,
9 pythonOlder,
10 setuptools,
11}:
12
13buildPythonPackage rec {
14 pname = "azure-mgmt-containerservice";
15 version = "30.0.0";
16 pyproject = true;
17
18 disabled = pythonOlder "3.8";
19
20 src = fetchPypi {
21 inherit pname version;
22 hash = "sha256-bGLmrFkONP7dc5/iSzGzdQcToBRhZpbqjUTHvMgcBrc=";
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 pythonImportsCheck = [ "azure.mgmt.containerservice" ];
37
38 meta = with lib; {
39 description = "This is the Microsoft Azure Container Service Management Client Library";
40 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerservice/azure-mgmt-containerservice";
41 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerservice_${version}/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md";
42 license = licenses.mit;
43 maintainers = with maintainers; [ maxwilson ];
44 };
45}