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