From 7c5abad9c2191cbc763cf1e9ab3a6f24c2aa4db4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Apr 2024 09:26:41 +0200 Subject: [PATCH] python312Packages.aiortm: refactor --- pkgs/development/python-modules/aiortm/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiortm/default.nix b/pkgs/development/python-modules/aiortm/default.nix index 7209364c1761..fe58b5cbdf64 100644 --- a/pkgs/development/python-modules/aiortm/default.nix +++ b/pkgs/development/python-modules/aiortm/default.nix @@ -29,14 +29,14 @@ buildPythonPackage rec { postPatch = '' 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 ]; - propagatedBuildInputs = [ + dependencies = [ aiohttp ciso8601 click @@ -56,10 +56,10 @@ buildPythonPackage rec { meta = with lib; { description = "Library for the Remember the Milk API"; - mainProgram = "aiortm"; homepage = "https://github.com/MartinHjelmare/aiortm"; changelog = "https://github.com/MartinHjelmare/aiortm/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; + mainProgram = "aiortm"; }; }