Unverified Commit fa79411c authored by Marcel's avatar Marcel
Browse files

python3Packages.mkdocs-test: init at 0.5.6

parent c8757324
Loading
Loading
Loading
Loading
+59 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  pytestCheckHook,
  beautifulsoup4,
  markdown,
  mkdocs,
  pandas,
  pyyaml,
  rich,
  super-collections,
}:

buildPythonPackage rec {
  pname = "mkdocs-test";
  version = "0.5.6";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "fralau";
    repo = "mkdocs-test";
    tag = "v${version}";
    hash = "sha256-dUJzjL96OrFukEVMdKxuzjo3FqC72n5zG/SpYmF/Wpg=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    beautifulsoup4
    markdown
    mkdocs
    pandas
    pyyaml
    rich
    super-collections
  ];

  pythonImportsCheck = [
    "mkdocs_test"
  ];

  nativeCheckInputs = [
    pytestCheckHook
    mkdocs
  ]
  ++ pandas.optional-dependencies.html;

  meta = {
    changelog = "https://github.com/fralau/mkdocs-test/releases/tag/${src.tag}";
    description = "Framework for testing MkDocs projects";
    homepage = "https://github.com/fralau/mkdocs-test";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ marcel ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9465,6 +9465,8 @@ self: super: with self; {
    callPackage ../development/python-modules/mkdocs-table-reader-plugin
      { };
  mkdocs-test = callPackage ../development/python-modules/mkdocs-test { };
  mkdocstrings = callPackage ../development/python-modules/mkdocstrings { };
  mkdocstrings-python = callPackage ../development/python-modules/mkdocstrings-python { };