about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-relay
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:58:13 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:33 -0700
commitb7a690c16493b4b5654ae65fba2b83de2bdce925 (patch)
tree55e70e22ed14512c84da6abc816c5c43945d641e /pkgs/development/python-modules/azure-mgmt-relay
parent6730fb4fcb0cb3faa197aa136f7c949ce93ab608 (diff)
downloadnixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.tar
nixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.tar.gz
nixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.tar.bz2
nixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.tar.lz
nixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.tar.xz
nixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.tar.zst
nixlib-b7a690c16493b4b5654ae65fba2b83de2bdce925.zip
pythonPackages.azure-mgmt-relay: init at 0.2.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-relay')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-relay/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-relay/default.nix b/pkgs/development/python-modules/azure-mgmt-relay/default.nix
new file mode 100644
index 000000000000..a3491356c9aa
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-relay/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-relay";
+  version = "0.2.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "0s5z4cil750wn770m0hdzcrpshj4bj1bglkkvxdx9l9054dk9s57";
+  };
+
+  propagatedBuildInputs = [
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Relay Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/relay?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}