aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/azure-mgmt-rdbms
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:55:49 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:29 -0700
commit747d59e6b364a9dbddc31149019afb8c0d761866 (patch)
tree608e8bc94e62e10f41f4777a79d930b7fcdcfa56 /pkgs/development/python-modules/azure-mgmt-rdbms
parent0b5759cd31ed127665662517654cee23813de049 (diff)
pythonPackages.azure-mgmt-rdbms: init at 1.8.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-rdbms')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-rdbms/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix
new file mode 100644
index 00000000000..881727e383b
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+ pname = "azure-mgmt-rdbms";
+ version = "1.8.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ extension = "zip";
+ sha256 = "40abbe4f9c59d7906594ceed067d0e7d09fef44be0d16aded5d5717f1a8aa5ea";
+ };
+
+ 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 RDBMS Management Client Library";
+ homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-rdbms;
+ license = licenses.mit;
+ maintainers = with maintainers; [ mwilsoninsight ];
+ };
+}