summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-hanaonazure
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:42:15 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:09 -0700
commit977d109254e8249b2e899067828bdee9199ee033 (patch)
tree74159758788133f06a94ad695e966ab2108303bd /pkgs/development/python-modules/azure-mgmt-hanaonazure
parent0652652f9a9c3034858c2618403a5ac4eb8503c4 (diff)
downloadnixpkgs-977d109254e8249b2e899067828bdee9199ee033.tar
nixpkgs-977d109254e8249b2e899067828bdee9199ee033.tar.gz
nixpkgs-977d109254e8249b2e899067828bdee9199ee033.tar.bz2
nixpkgs-977d109254e8249b2e899067828bdee9199ee033.tar.lz
nixpkgs-977d109254e8249b2e899067828bdee9199ee033.tar.xz
nixpkgs-977d109254e8249b2e899067828bdee9199ee033.tar.zst
nixpkgs-977d109254e8249b2e899067828bdee9199ee033.zip
pythonPackages.azure-mgmt-hanaonazure: init at 0.6.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-hanaonazure')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix
new file mode 100644
index 00000000000..26247a7eb39
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-hanaonazure";
+  version = "0.6.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "1spsy6g5z4nb1y1gfz0p1ykybi76qbig8j22zvmws59329b3br5h";
+  };
+
+  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 SAP Hana on Azure Management Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/hanaonazure?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}