markdown-anki-decks: fix build (#344044)

This commit is contained in:
Peder Bergebakken Sundt 2024-10-01 02:03:12 +02:00 committed by GitHub
commit d3ee30f608
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,13 +24,14 @@ python3.pkgs.buildPythonApplication rec {
dependencies = with python3.pkgs; [
beautifulsoup4
colorama
genanki
markdown
python-frontmatter
typer
];
# No tests available on Pypi and there is only a failing version assertion test in the repo.
# No tests available on PyPI and there is only a failing version assertion test in the repo.
doCheck = false;
pythonImportsCheck = [
@ -42,7 +43,7 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/lukesmurray/markdown-anki-decks";
changelog = "https://github.com/lukesmurray/markdown-anki-decks/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
maintainers = with maintainers; [ totoroot ];
platforms = platforms.unix;
mainProgram = "mdankideck";
};