15 buildPythonPackage rec {
16 pname = "mkdocs-rss-plugin";
20 disabled = pythonOlder "3.9";
22 src = fetchFromGitHub {
24 repo = "mkdocs-rss-plugin";
25 rev = "refs/tags/${version}";
26 hash = "sha256-cLQfhMYW/9Eb+IamQIC7fZRTm/ORD8xbcrmKkSkUrMs=";
30 sed -i "/--cov/d" setup.cfg
33 build-system = [ setuptools ];
47 pythonImportsCheck = [ "mkdocs_rss_plugin" ];
50 # Tests require network access
51 "test_plugin_config_through_mkdocs"
52 "test_remote_image_ok"
56 # Tests require network access
57 "tests/test_integrations_material_social_cards.py"
58 "tests/test_build_no_git.py"
63 description = "MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter";
64 homepage = "https://github.com/Guts/mkdocs-rss-plugin";
65 changelog = "https://github.com/Guts/mkdocs-rss-plugin/blob/${src.rev}/CHANGELOG.md";
66 license = licenses.mit;
67 maintainers = with maintainers; [ fab ];