10 buildPythonPackage rec {
11 pname = "meilisearch";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "meilisearch";
19 repo = "meilisearch-python";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-mgslzRd2hvDI0SbQR3eY2vzvaaOVI6mUihdNPKe4jcg=";
28 propagatedBuildInputs = [
31 ] ++ camel-converter.optional-dependencies.pydantic;
33 pythonImportsCheck = [
37 # Tests spin up a local server and are not mocking the requests
41 description = "Client for the Meilisearch API";
42 homepage = "https://github.com/meilisearch/meilisearch-python";
43 changelog = "https://github.com/meilisearch/meilisearch-python/releases/tag/v${version}";
44 license = with licenses; [ mit ];
45 maintainers = with maintainers; [ fab ];