about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-policyinsights
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:54:37 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:27 -0700
commitefa438331f0cfbf5603ad728b248099f91ee836d (patch)
tree611a37e1c1da1d0cb00e4bbeb44cede459e1be62 /pkgs/development/python-modules/azure-mgmt-policyinsights
parentb044c8e1e696f44f9c1a2a2111e6929b68b2c0a8 (diff)
pythonPackages.azure-mgmt-policyinsights: init at 0.3.1
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-policyinsights')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix
new file mode 100644
index 0000000000000..b57146afe3e96
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-policyinsights";
+  version = "0.3.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "b27f5ac367b69e225ab02fa2d1ea20cbbfe948ff43b0af4698cd8cbde0063908";
+  };
+
+  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 Policy Insights Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/policy?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}