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