Unverified Commit e32ad55a authored by Azat Bahawi's avatar Azat Bahawi Committed by GitHub
Browse files

Merge pull request #222899 from arjan-s/init-mkdocs-simple-hooks

python3Packages.mkdocs-simple-hooks: init at 0.1.5
parents c454f046 3dced15a
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, isPy3k
, fetchFromGitHub
, mkdocs
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "mkdocs-simple-hooks";
  version = "0.1.5";

  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -6079,6 +6079,7 @@ self: super: with self; {
  mkdocs-material-extensions = callPackage ../development/python-modules/mkdocs-material/mkdocs-material-extensions.nix { };
  mkdocs-minify = callPackage ../development/python-modules/mkdocs-minify { };
  mkdocs-redirects = callPackage ../development/python-modules/mkdocs-redirects { };
  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 { };