Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / meilisearch / default.nix
blobe5e47b934fd335d491ef328a589aa6b46f87ab96
1 { lib
2 , buildPythonPackage
3 , camel-converter
4 , fetchFromGitHub
5 , pythonOlder
6 , setuptools
7 , requests
8 }:
10 buildPythonPackage rec {
11   pname = "meilisearch";
12   version = "0.31.0";
13   pyproject = true;
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=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   propagatedBuildInputs = [
29     camel-converter
30     requests
31   ] ++ camel-converter.optional-dependencies.pydantic;
33   pythonImportsCheck = [
34     "meilisearch"
35   ];
37   # Tests spin up a local server and are not mocking the requests
38   doCheck = false;
40   meta = with lib; {
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 ];
46   };