ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-search / default.nix
blobe4cb5b2347424e3f1c477e92123b3c2e3f0944b0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , azure-mgmt-nspkg
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-search";
13   version = "8.0.0";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "a96d50c88507233a293e757202deead980c67808f432b8e897c4df1ca088da7e";
19   };
21   propagatedBuildInputs = [
22     azure-common
23     azure-mgmt-core
24     azure-mgmt-nspkg
25     msrest
26     msrestazure
27   ];
29   # has no tests
30   doCheck = false;
31   pythonImportsCheck = [ "azure.mgmt.search" ];
33   meta = with lib; {
34     description = "This is the Microsoft Azure Search Management Client Library";
35     homepage = "https://github.com/Azure/azure-sdk-for-python";
36     license = licenses.mit;
37     maintainers = with maintainers; [ maxwilson ];
38   };