12 buildPythonPackage rec {
13 pname = "azure-mgmt-search";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-U7xu6tsJdNIfEguyG7Xmgn321lDhc0dGD9g+LWiINZk=";
24 propagatedBuildInputs = [
28 ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
33 pythonImportsCheck = [ "azure.mgmt.search" ];
36 description = "This is the Microsoft Azure Search Management Client Library";
37 homepage = "https://github.com/Azure/azure-sdk-for-python";
38 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-search_${version}/sdk/search/azure-mgmt-search/CHANGELOG.md";
39 license = licenses.mit;
40 maintainers = with maintainers; [ maxwilson ];