mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
20ddf3b810
Diff: https://github.com/meilisearch/meilisearch-python/compare/refs/tags/v0.24.0...v0.25.0 Changelog: https://github.com/meilisearch/meilisearch-python/releases/tag/v0.25.0
43 lines
993 B
Nix
43 lines
993 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, camel-converter
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "meilisearch";
|
|
version = "0.25.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "meilisearch";
|
|
repo = "meilisearch-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-tN6rjUozN+VqUAm4vHN3RDQoNmkPE49pSUl+zuei9lc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|