blob: 77f5fe0fc656afdf12bc7987fa06c43d222f3f65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
python,
pygments,
pythonOlder,
wavedrom,
}:
buildPythonPackage rec {
pname = "markdown2";
version = "2.4.10";
format = "setuptools";
disabled = pythonOlder "3.5";
# PyPI does not contain tests, so using GitHub instead.
src = fetchFromGitHub {
owner = "trentm";
repo = "python-markdown2";
rev = version;
hash = "sha256-1Vs2OMQm/XBOEefV6W58X5hap91aTNuTx8UFf0285uk=";
};
nativeCheckInputs = [ pygments ];
checkPhase = ''
runHook preCheck
pushd test
${python.interpreter} ./test.py -- -knownfailure
popd # test
runHook postCheck
'';
passthru.optional-dependencies = {
code_syntax_highlighting = [ pygments ];
wavedrom = [ wavedrom ];
all = lib.flatten (
lib.attrValues (lib.filterAttrs (n: v: n != "all") passthru.optional-dependencies)
);
};
meta = with lib; {
changelog = "https://github.com/trentm/python-markdown2/blob/${src.rev}/CHANGES.md";
description = "Fast and complete Python implementation of Markdown";
mainProgram = "markdown2";
homepage = "https://github.com/trentm/python-markdown2";
license = licenses.mit;
maintainers = with maintainers; [ hbunke ];
};
}
|