16 buildPythonPackage rec {
17 pname = "mkdocs-rss-plugin";
21 disabled = pythonOlder "3.9";
23 src = fetchFromGitHub {
25 repo = "mkdocs-rss-plugin";
26 rev = "refs/tags/${version}";
27 hash = "sha256-6FTOJQqK9lKYt6cVpKvMcNUrhSwX26032Vr4JyZ6sI8=";
31 sed -i "/--cov/d" setup.cfg
34 build-system = [ setuptools ];
49 pythonImportsCheck = [ "mkdocs_rss_plugin" ];
52 # Tests require network access
53 "test_plugin_config_through_mkdocs"
58 # Tests require network access
59 "tests/test_integrations_material_social_cards.py"
60 "tests/test_build_no_git.py"
65 description = "MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter";
66 homepage = "https://github.com/Guts/mkdocs-rss-plugin";
67 changelog = "https://github.com/Guts/mkdocs-rss-plugin/blob/${src.rev}/CHANGELOG.md";
68 license = licenses.mit;
69 maintainers = with maintainers; [ fab ];