pythonPackages.azure-mgmt-iothubprovisioningservices: init at 0.2.0
This commit is contained in:
parent
e3c2f073e0
commit
2c5b10afa4
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, msrest
|
||||
, msrestazure
|
||||
, azure-common
|
||||
, azure-mgmt-nspkg
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-mgmt-iothubprovisioningservices";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "8c37acfd1c33aba845f2e0302ef7266cad31cba503cc990a48684659acb7b91d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
msrest
|
||||
msrestazure
|
||||
azure-common
|
||||
azure-mgmt-nspkg
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This is the Microsoft Azure IoTHub Provisioning Services Client Library";
|
||||
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/iot?view=azure-python;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
@ -334,6 +334,8 @@ in {
|
||||
|
||||
azure-mgmt-iothub = callPackage ../development/python-modules/azure-mgmt-iothub { };
|
||||
|
||||
azure-mgmt-iothubprovisioningservices = callPackage ../development/python-modules/azure-mgmt-iothubprovisioningservices { };
|
||||
|
||||
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };
|
||||
|
||||
azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { };
|
||||
|
Loading…
Reference in New Issue
Block a user