summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-batch
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 17:41:12 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:33 -0700
commit7ca7dfcd2c79ca19e71ee127399108453a71b824 (patch)
tree926c113ab078c3a164fce409cce33755177f236e /pkgs/development/python-modules/azure-batch
parenta18f5138e1f95e34350ba448e7d8e86dbb193780 (diff)
downloadnixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.tar
nixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.tar.gz
nixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.tar.bz2
nixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.tar.lz
nixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.tar.xz
nixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.tar.zst
nixpkgs-7ca7dfcd2c79ca19e71ee127399108453a71b824.zip
pythonPackages.azure-batch: init at 6.0.1
Diffstat (limited to 'pkgs/development/python-modules/azure-batch')
-rw-r--r--pkgs/development/python-modules/azure-batch/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-batch/default.nix b/pkgs/development/python-modules/azure-batch/default.nix
new file mode 100644
index 00000000000..35ba2d25d5a
--- /dev/null
+++ b/pkgs/development/python-modules/azure-batch/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, azure-common
+, msrestazure
+}:
+
+buildPythonPackage rec {
+  pname = "azure-batch";
+  version = "6.0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "d5b0de3db0058cd69baf30e059874094abf865e24ccd82e3cd25f3a48b9676d1";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Batch Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/batch?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}