9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
47 lines
1 KiB
Nix
47 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, camel-converter
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, setuptools
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "meilisearch";
|
|
version = "0.28.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "meilisearch";
|
|
repo = "meilisearch-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-iaho3a6Agk5Utl7px+E3afUJfoWbhoYSCe2WqYzDF1w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
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 ];
|
|
};
|
|
}
|