1{ lib
2, buildPythonPackage
3, fetchPypi
4, python-markdown-math
5, markdown
6, docutils
7, pygments
8}:
9
10buildPythonPackage rec {
11 pname = "Markups";
12 version = "3.0.0";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "1ea19458dfca6a4562044e701aa8698089a0c659fc535689ed260f89a04f8d39";
17 };
18
19 checkInputs = [ markdown docutils pygments ];
20 propagatedBuildInputs = [ python-markdown-math ];
21
22 meta = {
23 description = "A wrapper around various text markup languages.";
24 homepage = "https://github.com/retext-project/pymarkups";
25 license = lib.licenses.bsd3;
26 maintainers = with lib.maintainers; [ klntsky ];
27 };
28}