aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-cli-batchai
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-batchai')
-rw-r--r--pkgs/development/python-modules/azure-cli-batchai/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-cli-batchai/default.nix b/pkgs/development/python-modules/azure-cli-batchai/default.nix
new file mode 100644
index 0000000..6086cbb
--- /dev/null
+++ b/pkgs/development/python-modules/azure-cli-batchai/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, azure-cli-command-modules-nspkg
+, azure-cli-core
+, azure-mgmt-batchai
+, azure-mgmt-storage
+, azure-storage-blob
+, mock
+, sshtunnel
+}:
+
+buildPythonPackage rec {
+ pname = "azure_cli_batchai";
+ version = "0.4.0";
+ format = "wheel";
+
+ src = fetchPypi {
+ inherit pname version format;
+ sha256 = "1kacgxmzf23ja9nynkirwqpsdys11rb46k9bb4nhcflmmfg1wf56";
+ };
+
+ propagatedBuildInputs = [
+ azure-cli-command-modules-nspkg
+ azure-cli-core
+ azure-mgmt-batchai
+ azure-mgmt-storage
+ azure-storage-blob
+ mock
+ sshtunnel
+ ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Microsoft Azure Batch AI Client Command-Line Tools";
+ homepage = https://github.com/Azure/azure-cli;
+ license = licenses.mit;
+ maintainers = with maintainers; [ stesie ];
+ };
+}