1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "markdown2";
5 version = "2.3.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 extension = "zip";
10 sha256 = "8bb9a24eb2aa02f1427aabe46483f0f0215ab18c8a345315ae8e2ee3c3a09c03";
11 };
12
13 meta = with stdenv.lib; {
14 description = "A fast and complete Python implementation of Markdown";
15 homepage = https://github.com/trentm/python-markdown2;
16 license = licenses.mit;
17 maintainers = with maintainers; [ hbunke ];
18 };
19}