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