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
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{
lib,
buildPythonPackage,
cachecontrol,
feedparser,
fetchFromGitHub,
gitpython,
jsonfeed,
mkdocs,
pytest-cov-stub,
pytestCheckHook,
setuptools,
validator-collection,
}:
buildPythonPackage rec {
pname = "mkdocs-rss-plugin";
version = "1.17.4";
pyproject = true;
src = fetchFromGitHub {
owner = "Guts";
repo = "mkdocs-rss-plugin";
tag = version;
hash = "sha256-K+cqBJmTz4WzkeXp3pGQoizfLMuxR17Q33Fc0xc5eWo=";
};
build-system = [ setuptools ];
dependencies = [
cachecontrol
gitpython
mkdocs
]
++ cachecontrol.optional-dependencies.filecache;
nativeCheckInputs = [
feedparser
jsonfeed
pytest-cov-stub
pytestCheckHook
validator-collection
];
pythonImportsCheck = [ "mkdocs_rss_plugin" ];
disabledTests = [
# Tests require network access
"test_plugin_config_through_mkdocs"
"test_remote_image"
# Configuration error
"test_plugin_config_blog_enabled"
"test_plugin_config_social_cards_enabled_but_integration_disabled"
"test_plugin_config_theme_material"
"test_simple_build"
];
disabledTestPaths = [
# Tests require network access
"tests/test_integrations_material_social_cards.py"
"tests/test_build_no_git.py"
"tests/test_build.py"
];
meta = {
description = "MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter";
homepage = "https://github.com/Guts/mkdocs-rss-plugin";
changelog = "https://github.com/Guts/mkdocs-rss-plugin/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|