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