python3Packages.meilisearch: 0.37.0 -> 0.37.1 (#455254)

This commit is contained in:
Fabian Affolter
2025-10-24 20:14:58 +00:00
committed by GitHub
@@ -3,23 +3,20 @@
buildPythonPackage,
camel-converter,
fetchFromGitHub,
pythonOlder,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "meilisearch";
version = "0.37.0";
version = "0.37.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "meilisearch";
repo = "meilisearch-python";
tag = "v${version}";
hash = "sha256-KKJ93WvkbQEtyRgROT3uGShLSwOaKrOpPDNyMJLqQ4M=";
hash = "sha256-yPZs8PIwrb4LhaEGX3vLvTJwo6Rb9zbChtq1Wbgh9cw=";
};
build-system = [ setuptools ];
@@ -39,7 +36,7 @@ buildPythonPackage rec {
description = "Client for the Meilisearch API";
homepage = "https://github.com/meilisearch/meilisearch-python";
changelog = "https://github.com/meilisearch/meilisearch-python/releases/tag/${src.tag}";
license = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}