python313Packages.meilisearch: modernize

This commit is contained in:
Fabian Affolter
2025-10-24 20:58:00 +02:00
committed by GitHub
parent c0827891b5
commit 4d5440416e
@@ -3,7 +3,6 @@
buildPythonPackage,
camel-converter,
fetchFromGitHub,
pythonOlder,
setuptools,
requests,
}:
@@ -13,8 +12,6 @@ buildPythonPackage rec {
version = "0.37.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "meilisearch";
repo = "meilisearch-python";
@@ -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 ];
};
}