nixpkgs/pkgs/development/python-modules/markups/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.1 KiB
Nix
Raw Normal View History

2019-03-16 19:14:52 +00:00
{ lib
, buildPythonPackage
, docutils
2019-03-16 19:14:52 +00:00
, fetchPypi
, importlib-metadata
2019-03-16 19:14:52 +00:00
, markdown
, pygments
, pytestCheckHook
, python-markdown-math
, pythonOlder
, pyyaml
, textile
2019-03-16 19:14:52 +00:00
}:
buildPythonPackage rec {
pname = "markups";
version = "3.1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
2019-03-16 19:14:52 +00:00
src = fetchPypi {
pname = "Markups";
inherit version;
hash = "sha256-q5dHpywcZFdBjrQnbHmHGXfBOmVGGOTxLiofCZD78vw=";
2019-03-16 19:14:52 +00:00
};
propagatedBuildInputs = [
docutils
markdown
pygments
python-markdown-math
pyyaml
textile
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
checkInputs = [
pytestCheckHook
];
disabledTests = [
# AssertionError: '.selector .ch { color: #408080' not found in 'pre...
"test_get_pygments_stylesheet"
];
pythonImportsCheck = [
"markups"
];
2019-03-16 19:14:52 +00:00
meta = with lib; {
description = "Wrapper around various text markup languages";
homepage = "https://github.com/retext-project/pymarkups";
license = licenses.bsd3;
maintainers = with maintainers; [ klntsky ];
2019-03-16 19:14:52 +00:00
};
}