summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-subscription
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 19:04:08 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:42 -0700
commita85b7c99db392fdfa3acc35484302f4905fdc7fb (patch)
tree6b7ab049041d046a809225d6957717817438fcab /pkgs/development/python-modules/azure-mgmt-subscription
parent7ff677c231ca2694cfb6b79049ce8a2b7618576e (diff)
downloadnixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.tar
nixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.tar.gz
nixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.tar.bz2
nixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.tar.lz
nixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.tar.xz
nixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.tar.zst
nixpkgs-a85b7c99db392fdfa3acc35484302f4905fdc7fb.zip
pythonPackages.azure-mgmt-subscription: init at 0.3.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-subscription')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-subscription/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-subscription/default.nix b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix
new file mode 100644
index 00000000000..d19aba5fbc2
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-subscription";
+  version = "0.3.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "7a095fe46e598210b178e1059bba82eb02f3b8a7f44f3791442ff7d9ff323d2b";
+  };
+
+  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 Subscription Management Client Library";
+    homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-subscription;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}