about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-authorization
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:16:09 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:47 -0700
commit4a9487c0f0b71ce95b707cecc6ede7152e540f13 (patch)
treefc217329d1c01b3973b3224d1c889140e48818d3 /pkgs/development/python-modules/azure-mgmt-authorization
parent467db0f247356f5c94d72a7bbea94f80bc6f5957 (diff)
pythonPackages.azure-mgmt-authorization: init at 0.51.1
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-authorization')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-authorization/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix
new file mode 100644
index 0000000000000..c94620e0b15f1
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-authorization";
+  version = "0.51.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "d2789e21c6b85591b38d5d4e9b835b6546824c14e14aaa366da0ef50a95d2478";
+  };
+
+  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 Authorization Management Client Library";
+    homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-authorization;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}