Files
2026-05-26 09:23:57 +00:00

38 lines
856 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
aiohttp,
}:
buildPythonPackage (finalAttrs: {
pname = "aiolichess";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aryanhasgithub";
repo = "aiolichess";
tag = "v${finalAttrs.version}";
hash = "sha256-cJuaEjapvmmRypJHvkveBxjAvGpkq0tjguXJLktnb74=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
# upstream tests are empty
doCheck = false;
pythonImportsCheck = [ "aiolichess" ];
meta = {
description = "Async Python client for the Lichess REST API";
homepage = "https://github.com/aryanhasgithub/aiolichess";
changelog = "https://github.com/aryanhasgithub/aiolichess/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.jamiemagee ];
};
})