Files
nixpkgs/pkgs/development/python-modules/markups/default.nix
T
2026-01-17 17:00:12 +01:00

54 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
docutils,
fetchFromGitHub,
markdown,
pygments,
pytestCheckHook,
python-markdown-math,
pyyaml,
setuptools,
textile,
}:
buildPythonPackage rec {
pname = "markups";
version = "4.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "retext-project";
repo = "pymarkups";
tag = version;
hash = "sha256-kQ1L8l/ONT4qOA/xfx85WyA7pDveaKoXWGZbljYxO/4=";
};
build-system = [ setuptools ];
dependencies = [
docutils
markdown
pygments
python-markdown-math
pyyaml
textile
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# AssertionError: '.selector .ch { color: #408080' not found in 'pre...
"test_get_pygments_stylesheet"
];
pythonImportsCheck = [ "markups" ];
meta = {
description = "Wrapper around various text markup languages";
homepage = "https://github.com/retext-project/pymarkups";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ klntsky ];
};
}