about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-datamigration
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:38:15 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:03 -0700
commit7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea (patch)
tree599980ed86c93d33e980a7f39df9a9a1e481e4b4 /pkgs/development/python-modules/azure-mgmt-datamigration
parentf1a822058fd97800c5ed46af709304e3f4cfd82a (diff)
downloadnixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.tar
nixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.tar.gz
nixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.tar.bz2
nixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.tar.lz
nixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.tar.xz
nixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.tar.zst
nixlib-7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea.zip
pythonPackages.azure-mgmt-datamigration: init at 2.1.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-datamigration')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-datamigration/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix
new file mode 100644
index 000000000000..26b900299772
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-datamigration";
+  version = "2.1.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "49e6e68093e2d647c1c54a4027dee5b1d57f7e7c21480ae386c55cb3d5fa14bc";
+  };
+
+  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 Migration Client Library";
+    homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datamigration;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}