mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 13:06:32 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
72 lines
1.6 KiB
Nix
72 lines
1.6 KiB
Nix
{
|
|
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 ];
|
|
};
|
|
}
|