1 { lib, buildPythonPackage, fetchFromGitHub, python, pygments }:
3 buildPythonPackage rec {
7 # PyPI does not contain tests, so using GitHub instead.
8 src = fetchFromGitHub {
10 repo = "python-markdown2";
12 sha256 = "sha256:03qmf087phpj0h9hx111k4r5pkm48dhb61mqhp1v75gd09k0z79z";
15 checkInputs = [ pygments ];
18 ${python.interpreter} ./test/test.py
22 description = "A fast and complete Python implementation of Markdown";
23 homepage = "https://github.com/trentm/python-markdown2";
24 license = licenses.mit;
25 maintainers = with maintainers; [ hbunke ];