summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-machinelearningcompute
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:47:34 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:17 -0700
commit75a0b554f6192c53b716d99a1fd3d37a7ac5a626 (patch)
tree61f1af318a5a523ac696878941e3c2dd737c58cc /pkgs/development/python-modules/azure-mgmt-machinelearningcompute
parent4ddc3e954a3fd1945565f2f420afdc3e1f6e3065 (diff)
downloadnixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.tar
nixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.tar.gz
nixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.tar.bz2
nixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.tar.lz
nixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.tar.xz
nixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.tar.zst
nixpkgs-75a0b554f6192c53b716d99a1fd3d37a7ac5a626.zip
pythonPackages.azure-mgmt-machinelearningcompute: init at 0.4.1
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-machinelearningcompute')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix b/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix
new file mode 100644
index 00000000000..a68f7e43858
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-machinelearningcompute";
+  version = "0.4.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "7a52f85591114ef33a599dabbef840d872b7f599b7823e596af9490ec51b873f";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Machine Learning Compute Management Client Library";
+    homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-machinelearningcompute;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}