about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-containerservice
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:33:44 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:56 -0700
commitd67a687af87f2ed6c2b3797c756c087f084b2538 (patch)
tree0bed883b28eeab988fc4c00672a2b2aa25caa0c5 /pkgs/development/python-modules/azure-mgmt-containerservice
parent1478e0082bb2de7b31cfd057390058c2ff644ad5 (diff)
downloadnixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.tar
nixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.tar.gz
nixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.tar.bz2
nixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.tar.lz
nixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.tar.xz
nixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.tar.zst
nixlib-d67a687af87f2ed6c2b3797c756c087f084b2538.zip
pythonPackages.azure-mgmt-containerservice: init at 5.3.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-containerservice')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-containerservice/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
new file mode 100644
index 000000000000..5e68ef2d3837
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-containerservice";
+  version = "5.3.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "1dhni22n85x76709mvjmby8i8hvginzniq1dna6f5cidfcalc0vs";
+  };
+
+  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 Service Management Client Library";
+    homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-containerservice;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}