1{ stdenv, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 pname = "markdown2"; 5 version = "2.3.5"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "mirror://pypi/m/markdown2/${name}.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}