about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-containerinstance
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:27:18 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:55 -0700
commit1478e0082bb2de7b31cfd057390058c2ff644ad5 (patch)
tree98c0e623291a3449110ff2520b7a8d22c14fbec6 /pkgs/development/python-modules/azure-mgmt-containerinstance
parent9d757d6a18a7c19944a609521fabd491eeb929e2 (diff)
pythonPackages.azure-mgmt-containerinstance: init at 1.4.1
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-containerinstance')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix b/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix
new file mode 100644
index 0000000000000..e32182225f11f
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-containerinstance";
+  version = "1.4.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "87919f3e618ec0a40fd163d763113eef908e78c50d8b76bf4dd795444cb069fd";
+  };
+
+  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 Container Instance Client Library";
+    homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-containerinstance;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}