blob: fb1f33004bbc00339f683b9b042416d5a46c40d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ stdenv, buildPythonPackage, fetchPypi
, azure-common
, azure-mgmt-nspkg
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-mgmt-iothub";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1ghl5ln9w2zn2m61gjmd497wkzw0rzg409vxx6hg0i38xm182f08";
};
propagatedBuildInputs = [ azure-common azure-mgmt-nspkg msrestazure ];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure IoTHub Management Client Library for Python";
homepage = https://github.com/Azure/azure-sdk-for-python;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|