17 buildPythonPackage rec {
22 disabled = pythonOlder "3.9";
24 src = fetchFromGitHub {
25 owner = "MartinHjelmare";
27 rev = "refs/tags/v${version}";
28 hash = "sha256-X7MqBDmVfLy5ajqhFcvA8oCaoxy3zLusXkB659qWR5E=";
32 substituteInPlace pyproject.toml \
33 --replace-fail " --cov=aiortm --cov-report=term-missing:skip-covered" ""
36 build-system = [ poetry-core ];
52 pythonImportsCheck = [ "aiortm" ];
55 description = "Library for the Remember the Milk API";
56 homepage = "https://github.com/MartinHjelmare/aiortm";
57 changelog = "https://github.com/MartinHjelmare/aiortm/blob/v${version}/CHANGELOG.md";
58 license = with licenses; [ asl20 ];
59 maintainers = with maintainers; [ fab ];
60 mainProgram = "aiortm";