summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-servicebus
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 19:00:42 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:37 -0700
commit0795e4b362d2f69bfc729d52ff998fbce59a5247 (patch)
treed5c2a7396032bc305495035dd1a660603ed8ae62 /pkgs/development/python-modules/azure-mgmt-servicebus
parentd98b22b1742597aa7df72f460b2cfc6d1861b3bd (diff)
downloadnixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.tar
nixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.tar.gz
nixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.tar.bz2
nixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.tar.lz
nixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.tar.xz
nixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.tar.zst
nixpkgs-0795e4b362d2f69bfc729d52ff998fbce59a5247.zip
pythonPackages.azure-mgmt-servicebus: init at 0.6.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-servicebus')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-servicebus/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
new file mode 100644
index 00000000000..e5b35e538ee
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-servicebus";
+  version = "0.6.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "f20920b8fb119ef4abeda4d2dac765a4fc48cd0bcf30c27f8c4cc6d890bc08b1";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+  ] ++ lib.optionals (!isPy3k) [
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Service Bus Management Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/servicebus?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}