summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-msi
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:51:56 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:24 -0700
commit628d735751d99811fd3327951b78aab3012af8c3 (patch)
tree291c24ec13731a02bba35524fea810dd441331d6 /pkgs/development/python-modules/azure-mgmt-msi
parent9977c6cf19e35557f0f95fb51368922e4cbfa377 (diff)
downloadnixpkgs-628d735751d99811fd3327951b78aab3012af8c3.tar
nixpkgs-628d735751d99811fd3327951b78aab3012af8c3.tar.gz
nixpkgs-628d735751d99811fd3327951b78aab3012af8c3.tar.bz2
nixpkgs-628d735751d99811fd3327951b78aab3012af8c3.tar.lz
nixpkgs-628d735751d99811fd3327951b78aab3012af8c3.tar.xz
nixpkgs-628d735751d99811fd3327951b78aab3012af8c3.tar.zst
nixpkgs-628d735751d99811fd3327951b78aab3012af8c3.zip
pythonPackages.azure-mgmt-msi: init at 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-msi')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-msi/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-msi/default.nix b/pkgs/development/python-modules/azure-mgmt-msi/default.nix
new file mode 100644
index 00000000000..63ebbb298f2
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-msi/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-msi";
+  version = "1.0.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "0n4gbwk843z66hhpcp1kcrnwqkzygbbc2ma01r9asgfv4nmklvyl";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure MSI Management Client Library";
+    homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-msi;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}