python312Packages.mkdocs-rss-plugin: init at 1.12.1
MkDocs plugin to generate a RSS feeds for created and updated pages https://github.com/Guts/mkdocs-rss-plugin
This commit is contained in:
parent
b46e2fb0fb
commit
c24a03c95c
@ -0,0 +1,69 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
feedparser,
|
||||
fetchFromGitHub,
|
||||
gitpython,
|
||||
jsonfeed,
|
||||
mkdocs,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
validator-collection,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mkdocs-rss-plugin";
|
||||
version = "1.12.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Guts";
|
||||
repo = "mkdocs-rss-plugin";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-cLQfhMYW/9Eb+IamQIC7fZRTm/ORD8xbcrmKkSkUrMs=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i "/--cov/d" setup.cfg
|
||||
'';
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
gitpython
|
||||
mkdocs
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
feedparser
|
||||
jsonfeed
|
||||
pytestCheckHook
|
||||
validator-collection
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "mkdocs_rss_plugin" ];
|
||||
|
||||
disabledTests = [
|
||||
# Tests require network access
|
||||
"test_plugin_config_through_mkdocs"
|
||||
"test_remote_image_ok"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Tests require network access
|
||||
"tests/test_integrations_material_social_cards.py"
|
||||
"tests/test_build_no_git.py"
|
||||
"tests/test_build.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
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.rev}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -7456,6 +7456,8 @@ self: super: with self; {
|
||||
|
||||
mkdocs-mermaid2-plugin = callPackage ../development/python-modules/mkdocs-mermaid2-plugin { };
|
||||
|
||||
mkdocs-rss-plugin = callPackage ../development/python-modules/mkdocs-rss-plugin { };
|
||||
|
||||
mkl-service = callPackage ../development/python-modules/mkl-service { };
|
||||
|
||||
ml-collections = callPackage ../development/python-modules/ml-collections { };
|
||||
|
Loading…
Reference in New Issue
Block a user