From b6714f59cce26ddc831ca4a213e8f56476184fb1 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Mon, 10 Sep 2018 18:33:48 +0200 Subject: initial commit --- .../python-modules/azure-mgmt-iothub/default.nix | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-iothub/default.nix (limited to 'pkgs/development/python-modules/azure-mgmt-iothub') diff --git a/pkgs/development/python-modules/azure-mgmt-iothub/default.nix b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix new file mode 100644 index 0000000..fb1f330 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix @@ -0,0 +1,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 ]; + }; +} -- cgit v1.2.3