aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-mgmt-compute/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-compute/default.nix')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-compute/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-compute/default.nix b/pkgs/development/python-modules/azure-mgmt-compute/default.nix
new file mode 100644
index 0000000..8f9152e
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-compute/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, azure-common
+, azure-mgmt-nspkg
+, msrest
+, msrestazure
+}:
+
+buildPythonPackage rec {
+ pname = "azure_mgmt_compute";
+ version = "4.0.0rc2";
+ format = "wheel";
+
+ src = fetchPypi {
+ inherit pname version format;
+ sha256 = "1p3xs9fx1rszc4ahha8g78b2wnq2ln83pan5lzx9q9w03wwpa5gf";
+ };
+
+ propagatedBuildInputs = [
+ azure-common
+ azure-mgmt-nspkg
+ msrest
+ msrestazure
+ ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Microsoft Azure Compute Management Client Library for Python";
+ homepage = https://github.com/Azure/azure-sdk-for-python;
+ license = licenses.mit;
+ maintainers = with maintainers; [ olcai stesie ];
+ };
+}