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