nixpkgs/pkgs/development/python-modules/markdown-it-py/default.nix
2021-04-03 17:49:48 +02:00

48 lines
1.0 KiB
Nix

{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pythonOlder
, attrs
, coverage
, psutil
, pytest-benchmark
}:
buildPythonPackage rec {
pname = "markdown-it-py";
version = "0.6.2";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "executablebooks";
repo = "markdown-it-py";
rev = "v${version}";
sha256 = "1g9p8pdnvjya436lii63r5gjajhmbhmyh9ngbjqf9dqny05nagz1";
};
propagatedBuildInputs = [ attrs ];
checkInputs = [
coverage
pytest-benchmark
psutil
pytestCheckHook
];
disabledTests = [
# Requires the unpackaged pytest-regressions fixture plugin
"test_amsmath"
"test_container"
"test_deflist"
"test_dollarmath"
"test_spec"
"test_texmath"
];
meta = with lib; {
description = "Markdown parser done right";
homepage = "https://markdown-it-py.readthedocs.io/en/latest";
changelog = "https://github.com/executablebooks/markdown-it-py/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ bhipple ];
};
}