nixpkgs/pkgs/development/python-modules/markdown-it-py/default.nix
Peder Bergebakken Sundt c0c84051fd python3Packages.markdown-it-py: fix linkify extra
linkify-it-py is on version 2.0.0, while markdown-it-py[linkify] depends on linkify-it-py~=1.0
2023-08-08 18:42:20 +08:00

83 lines
1.6 KiB
Nix

{ lib
, attrs
, buildPythonPackage
, commonmark
, fetchFromGitHub
, flit-core
, linkify-it-py
, markdown
, mdurl
, mistletoe
, mistune
, myst-parser
, panflute
, pyyaml
, sphinx
, sphinx-book-theme
, sphinx-copybutton
, sphinx-design
, stdenv
, pytest-regressions
, pytestCheckHook
, pythonRelaxDepsHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "markdown-it-py";
version = "2.2.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "executablebooks";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-qdRU1BxczFDGoIEtl0ZMkKNn4p5tec8YuPt5ZwX5fYM=";
};
# fix downstrem usage of markdown-it-py[linkify]
pythonRelaxDeps = [
"linkify-it-py"
];
nativeBuildInputs = [
pythonRelaxDepsHook
flit-core
];
propagatedBuildInputs = [
mdurl
];
nativeCheckInputs = [
pytest-regressions
pytestCheckHook
] ++ passthru.optional-dependencies.linkify;
# disable and remove benchmark tests
preCheck = ''
rm -r benchmarking
'';
doCheck = !stdenv.isi686;
pythonImportsCheck = [
"markdown_it"
];
passthru.optional-dependencies = {
compare = [ commonmark markdown mistletoe mistune panflute ];
linkify = [ linkify-it-py ];
rtd = [ attrs myst-parser pyyaml sphinx sphinx-copybutton sphinx-design sphinx-book-theme ];
};
meta = with lib; {
description = "Markdown parser in Python";
homepage = "https://markdown-it-py.readthedocs.io/";
changelog = "https://github.com/executablebooks/markdown-it-py/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ bhipple ];
};
}