python3Packages.mkdocs-simple-blog: fix build (#501425)

This commit is contained in:
Michael Daniels
2026-03-24 00:07:53 +00:00
committed by GitHub
@@ -3,7 +3,9 @@
buildPythonPackage,
fetchFromGitHub,
mkdocs,
setuptools,
poetry-core,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "mkdocs-simple-blog";
@@ -17,14 +19,16 @@ buildPythonPackage rec {
hash = "sha256-1RzorEsGXA8mRzMSS9S5vbPqJXK0vPMlRixo+Yrq27U=";
};
build-system = [ setuptools ];
build-system = [ poetry-core ];
dependencies = [
mkdocs
];
# This package has no tests
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "mkdocs_simple_blog" ];