Files
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

60 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
beautifulsoup4,
markdown,
mkdocs,
pandas,
pyyaml,
rich,
super-collections,
}:
buildPythonPackage rec {
pname = "mkdocs-test";
version = "0.5.6";
pyproject = true;
src = fetchFromGitHub {
owner = "fralau";
repo = "mkdocs-test";
tag = "v${version}";
hash = "sha256-dUJzjL96OrFukEVMdKxuzjo3FqC72n5zG/SpYmF/Wpg=";
};
build-system = [
setuptools
];
dependencies = [
beautifulsoup4
markdown
mkdocs
pandas
pyyaml
rich
super-collections
];
pythonImportsCheck = [
"mkdocs_test"
];
nativeCheckInputs = [
pytestCheckHook
mkdocs
]
++ pandas.optional-dependencies.html;
meta = {
changelog = "https://github.com/fralau/mkdocs-test/releases/tag/${src.tag}";
description = "Framework for testing MkDocs projects";
homepage = "https://github.com/fralau/mkdocs-test";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ marcel ];
};
}