about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-scheduler
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:59:39 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:35 -0700
commite70d8d9802b4dfdd70f930bef7ff5bb7c10cab2d (patch)
tree50c0cdaa6aa5f24ab26da47467d5552a8cd0865c /pkgs/development/python-modules/azure-mgmt-scheduler
parente1f894b0de9fd5452711935c159bce2d2a2715ae (diff)
pythonPackages.azure-mgmt-scheduler: init at 2.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-scheduler')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-scheduler/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix b/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix
new file mode 100644
index 0000000000000..a25b81aa5fab0
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-scheduler";
+  version = "2.0.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "c6e6edd386ddc4c21d54b1497c3397b970bc127b71809b51bd2391cb1f3d1a14";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Scheduler Management Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/scheduler?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}