bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
camel-converter,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "meilisearch";
|
|
version = "0.31.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "meilisearch";
|
|
repo = "meilisearch-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-OGL7n4GIRrwU8OBdzi/H09lUy/Vue0bfHCLnztc4h5g=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
camel-converter
|
|
requests
|
|
] ++ camel-converter.optional-dependencies.pydantic;
|
|
|
|
pythonImportsCheck = [ "meilisearch" ];
|
|
|
|
# Tests spin up a local server and are not mocking the requests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Client for the Meilisearch API";
|
|
homepage = "https://github.com/meilisearch/meilisearch-python";
|
|
changelog = "https://github.com/meilisearch/meilisearch-python/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|