7 python3.pkgs.buildPythonApplication rec {
8 pname = "markdown-anki-decks";
13 inherit pname version;
14 hash = "sha256-SvKjjE629OwxWsPo2egGf2K6GzlWAYYStarHhA4Ex0w=";
18 substituteInPlace pyproject.toml \
19 --replace-fail 'typer = "^0.4.0"' 'typer = "*"'
22 build-system = with python3.pkgs; [
26 dependencies = with python3.pkgs; [
35 # No tests available on PyPI and there is only a failing version assertion test in the repo.
38 pythonImportsCheck = [
43 description = "Tool to convert Markdown files into Anki Decks";
44 homepage = "https://github.com/lukesmurray/markdown-anki-decks";
45 changelog = "https://github.com/lukesmurray/markdown-anki-decks/blob/${version}/CHANGELOG.md";
46 license = licenses.mit;
47 maintainers = with maintainers; [ totoroot ];
48 platforms = platforms.unix;
49 mainProgram = "mdankideck";