about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-netapp
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-22 23:50:55 -0700
committerJon <jonringer@users.noreply.github.com>2019-11-23 19:47:04 -0800
commit9c6325bbea28b298e46600eaec3a42c9c6749bc9 (patch)
tree2ceb07c2a5fa684d7eea64a7188368a0e208c95d /pkgs/development/python-modules/azure-mgmt-netapp
parentd6c60d46c6239c86106d58828afab5694a867dbd (diff)
python3Packages.azure-mgmt-netapp: init at 0.6.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-netapp')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-netapp/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-netapp/default.nix b/pkgs/development/python-modules/azure-mgmt-netapp/default.nix
new file mode 100644
index 0000000000000..79a3a19778d1d
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-netapp/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, msrest
+, msrestazure
+}:
+
+buildPythonPackage rec {
+  version = "0.6.0";
+  pname = "azure-mgmt-netapp";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "10ymvyj386z9bjdm2g1b5a4vfnn87ig2zm6xn2xddvbpy0jxnyfv";
+    extension = "zip";
+  };
+
+  propagatedBuildInputs = [ azure-common msrest msrestazure ];
+
+  # no tests included
+  doCheck = false;
+
+  pythonImportsCheck = [ "azure.common" "azure.mgmt.netapp" ];
+
+  meta = with lib; {
+    description = "Microsoft Azure NetApp Files Management Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}