blob: 86ac69ba558daa006e726acec2fd3fbc873cb45a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
beautifulsoup4,
markdown,
mkdocs,
pandas,
pyyaml,
rich,
super-collections,
}:
buildPythonPackage rec {
pname = "mkdocs-test";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fralau";
repo = "mkdocs-test";
tag = "v${version}";
hash = "sha256-IP6qL+qR8uYSV5eG7/spiiNtdNghApdiuHBF+8OjPPg=";
};
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 ];
};
}
|