summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-logic
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:45:58 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:16 -0700
commit4ddc3e954a3fd1945565f2f420afdc3e1f6e3065 (patch)
treef37cb19f485276ac902577ec395cce2aed365f1d /pkgs/development/python-modules/azure-mgmt-logic
parentd169f956a7cf3ad39f1069e63898e817a4842aeb (diff)
downloadnixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.tar
nixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.tar.gz
nixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.tar.bz2
nixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.tar.lz
nixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.tar.xz
nixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.tar.zst
nixpkgs-4ddc3e954a3fd1945565f2f420afdc3e1f6e3065.zip
pythonPackages.azure-mgmt-logic: init at 3.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-logic')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-logic/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-logic/default.nix b/pkgs/development/python-modules/azure-mgmt-logic/default.nix
new file mode 100644
index 00000000000..2050e290467
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-logic/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-logic";
+  version = "3.0.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "d163dfc32e3cfa84f3f8131a75d9e94f5c4595907332cc001e45bf7e4efd5add";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Logic Apps Management Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/logic-apps?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}