python312Packages.aiortm: refactor

This commit is contained in:
Fabian Affolter 2024-04-12 09:26:41 +02:00
parent 9352c673cc
commit 7c5abad9c2

View File

@ -29,14 +29,14 @@ buildPythonPackage rec {
postPatch = '' postPatch = ''
substituteInPlace pyproject.toml \ substituteInPlace pyproject.toml \
--replace-warn " --cov=aiortm --cov-report=term-missing:skip-covered" "" --replace-fail " --cov=aiortm --cov-report=term-missing:skip-covered" ""
''; '';
nativeBuildInputs = [ build-system = [
poetry-core poetry-core
]; ];
propagatedBuildInputs = [ dependencies = [
aiohttp aiohttp
ciso8601 ciso8601
click click
@ -56,10 +56,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Library for the Remember the Milk API"; description = "Library for the Remember the Milk API";
mainProgram = "aiortm";
homepage = "https://github.com/MartinHjelmare/aiortm"; homepage = "https://github.com/MartinHjelmare/aiortm";
changelog = "https://github.com/MartinHjelmare/aiortm/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/MartinHjelmare/aiortm/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "aiortm";
}; };
} }