1{ lib
2, buildPythonPackage
3, fetchPypi
4, markdown
5, isPy27
6}:
7
8buildPythonPackage rec {
9 pname = "python-markdown-math";
10 version = "0.8";
11 disabled = isPy27;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "8564212af679fc18d53f38681f16080fcd3d186073f23825c7ce86fadd3e3635";
16 };
17
18 nativeCheckInputs = [ markdown ];
19
20 meta = {
21 description = "Math extension for Python-Markdown";
22 homepage = "https://github.com/mitya57/python-markdown-math";
23 license = lib.licenses.bsd3;
24 maintainers = with lib.maintainers; [ klntsky ];
25 };
26}