Files
nixpkgs/pkgs/by-name/md/mdslides/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

33 lines
861 B
Nix

{
lib,
fetchFromGitHub,
python3Packages,
}:
python3Packages.buildPythonApplication {
pname = "mdslides";
version = "0-unstable-2022-12-15";
pyproject = true;
src = fetchFromGitHub {
owner = "dadoomer";
repo = "markdown-slides";
rev = "fd27dd09cf90f00093a393338e08953c8d65d68e";
sha256 = "sha256-31ALsy1P/vfI+H6Onmg4TXLeKbVAQ1FlnFs4k6ZOgHQ=";
};
build-system = with python3Packages; [ setuptools ];
doCheck = false;
pythonImportsCheck = [ "mdslides" ];
meta = with lib; {
longDescription = "Using markdown, write simple but beautiful presentations with math, animations and media, which can be visualized in a web browser or exported to PDF.";
homepage = "https://github.com/dadoomer/markdown-slides";
license = licenses.mit;
maintainers = [ maintainers.qjoly ];
mainProgram = "mdslides";
};
}