about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-datafactory
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:35:30 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:58 -0700
commit09c1cdd9ca1bd5900f680f07c9775865e759758c (patch)
tree3b9812f7414a22cd0dbf411f536042ac48d8ab0b /pkgs/development/python-modules/azure-mgmt-datafactory
parent6925685ecc713a5bdb724eb6241da8a88161bf71 (diff)
pythonPackages.azure-mgmt-datafactory: init at 0.7.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-datafactory')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-datafactory/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix b/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix
new file mode 100644
index 0000000000000..7d028a61a5503
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-datafactory";
+  version = "0.7.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "7a50da8415e316bd3be0c90ff7e2bffee2afb959aefea23b5923f22dd7094a37";
+  };
+
+  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 Data Factory Management Client Library";
+    homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datafactory;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}