1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 msrest, 6 msrestazure, 7 azure-common, 8 azure-mgmt-core, 9 azure-mgmt-nspkg, 10 pythonOlder, 11}: 12 13buildPythonPackage rec { 14 pname = "azure-mgmt-containerinstance"; 15 version = "10.1.0"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 extension = "zip"; 23 hash = "sha256-eNQ3rbKFdPRIyDjtXwH5ztN4GWCYBh3rWdn3AxcEwX4="; 24 }; 25 26 propagatedBuildInputs = [ 27 msrest 28 msrestazure 29 azure-common 30 azure-mgmt-core 31 ]; 32 33 # has no tests 34 doCheck = false; 35 36 pythonImportsCheck = [ "azure.mgmt.containerinstance" ]; 37 38 meta = with lib; { 39 description = "This is the Microsoft Azure Container Instance Client Library"; 40 homepage = "https://github.com/Azure/azure-sdk-for-python"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ maxwilson ]; 43 }; 44}