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