9 buildPythonPackage rec {
10 pname = "mkdocs-simple-hooks";
12 format = "setuptools";
16 src = fetchFromGitHub {
18 repo = "mkdocs-simple-hooks";
20 hash = "sha256-N6xZjCREjJlhR6f8m65WJswUQv/TTdTbk670+C46UWQ=";
23 propagatedBuildInputs = [
27 nativeCheckInputs = [ pytestCheckHook ];
29 pytestFlagsArray = [ "tests.py" ];
31 # disable failing tests
33 "test_no_hooks_defined"
38 description = "Define your own hooks for mkdocs, without having to create a new package.";
39 homepage = "https://github.com/aklajnert/mkdocs-simple-hooks";
40 license = licenses.mit;
41 maintainers = with maintainers; [ arjan-s ];