mkdocs-simple-hooks: drop

This commit is contained in:
Arjan Schrijver 2024-04-23 10:02:30 +02:00 committed by tomf
parent 30ddacc063
commit b57afc9bfb
2 changed files with 0 additions and 45 deletions

View File

@ -1,43 +0,0 @@
{ lib
, buildPythonPackage
, isPy3k
, fetchFromGitHub
, mkdocs
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "mkdocs-simple-hooks";
version = "0.1.5";
format = "setuptools";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "aklajnert";
repo = "mkdocs-simple-hooks";
rev = "v${version}";
hash = "sha256-N6xZjCREjJlhR6f8m65WJswUQv/TTdTbk670+C46UWQ=";
};
propagatedBuildInputs = [
mkdocs
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests.py" ];
# disable failing tests
disabledTests = [
"test_no_hooks_defined"
"test_no_attribute"
];
meta = with lib; {
description = "Define your own hooks for mkdocs, without having to create a new package.";
homepage = "https://github.com/aklajnert/mkdocs-simple-hooks";
license = licenses.mit;
maintainers = with maintainers; [ arjan-s ];
};
}

View File

@ -7506,8 +7506,6 @@ self: super: with self; {
mkdocs-rss-plugin = callPackage ../development/python-modules/mkdocs-rss-plugin { };
mkdocs-simple-hooks = callPackage ../development/python-modules/mkdocs-simple-hooks { };
mkdocs-swagger-ui-tag = callPackage ../development/python-modules/mkdocs-swagger-ui-tag { };
mkdocstrings = callPackage ../development/python-modules/mkdocstrings { };