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