summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-deploymentmanager
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-22 22:54:32 -0700
committerJon <jonringer@users.noreply.github.com>2019-11-23 19:47:04 -0800
commit06eec9876f531ac01bda2837e46523e616ff8766 (patch)
treefbc9abc2f49bcbd98395698429e49577694da363 /pkgs/development/python-modules/azure-mgmt-deploymentmanager
parentb4a079bd65432712293ccff068e791a8f3928225 (diff)
downloadnixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.tar
nixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.tar.gz
nixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.tar.bz2
nixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.tar.lz
nixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.tar.xz
nixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.tar.zst
nixpkgs-06eec9876f531ac01bda2837e46523e616ff8766.zip
python3Packages.azure-mgmt-deploymentmanager: init at 0.1.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-deploymentmanager')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix b/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix
new file mode 100644
index 00000000000..276cc86ad8f
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, msrest
+, msrestazure
+}:
+
+buildPythonPackage rec {
+  version = "0.1.0";
+  pname = "azure-mgmt-deploymentmanager";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0gvh17bhfcpvr6w0nd06v482m8lqxchlk256w68agi2qnqw6v2ir";
+    extension = "zip";
+  };
+
+  propagatedBuildInputs = [ azure-common msrest msrestazure ];
+
+  # no tests included
+  doCheck = false;
+
+  pythonImportsCheck = [ "azure.common" "azure.mgmt.deploymentmanager" ];
+
+  meta = with lib; {
+    description = "Microsoft Azure Deployment Manager Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}