about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-appcontainers
diff options
context:
space:
mode:
authorJean-François Roche <jfroche@affinitic.be>2023-04-18 00:29:08 +0200
committerJean-François Roche <jfroche@pyxel.be>2023-06-29 23:39:40 +0200
commit071e45ea88e97eb4ef23bb361f91788a3ca1eb81 (patch)
tree9d5f3c71212ec2809bd0f17dcc00a7ecc1a129da /pkgs/development/python-modules/azure-mgmt-appcontainers
parentc57bc5f8129dd25337ad155f22fed3e3809dfe67 (diff)
azure-mgmt-appcontainers: init at 2.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-appcontainers')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix
new file mode 100644
index 0000000000000..f7dcaaab7e89a
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isPy27
+, azure-common
+, azure-mgmt-core
+, msrest
+, msrestazure
+}:
+
+buildPythonPackage rec {
+  version = "2.0.0";
+  pname = "azure-mgmt-appcontainers";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-ccdIdvdgTYPWEZCWqkLc8lEuMuAEERvl5B1huJyBkvU=";
+    extension = "zip";
+  };
+
+  propagatedBuildInputs = [
+    azure-common
+    azure-mgmt-core
+    msrest
+    msrestazure
+  ];
+
+  # no tests included
+  doCheck = false;
+
+  pythonImportsCheck = [ "azure.common" "azure.mgmt.appcontainers" ];
+
+  meta = with lib; {
+    description = "Microsoft Azure Appcontainers Management Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}