about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-batchai
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:18:25 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:49 -0700
commit3fb174eb0e10b9f8b994f2e08314ce6394f430d5 (patch)
treeeb47cf623d4937d8cc61ebea2420c6c60a449a89 /pkgs/development/python-modules/azure-mgmt-batchai
parentc156da6feabf1d5bb3d5ae3679b51a0327ebd8fb (diff)
pythonPackages.azure-mgmt-batchai: init at 2.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-batchai')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-batchai/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-batchai/default.nix b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix
new file mode 100644
index 0000000000000..faa4d5bc39aa5
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, azure-common
+, azure-mgmt-nspkg
+, msrestazure
+, python
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-batchai";
+  version = "2.0.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683";
+  };
+
+  propagatedBuildInputs = [
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Batch AI Management Client Library";
+    homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-batchai;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}