at 17.09-beta 548 B view raw
1{ stdenv, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 pname = "markdown2"; 5 version = "2.3.4"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "mirror://pypi/m/markdown2/${name}.zip"; 10 sha256 = "264731e7625402227ff6fb01f2d814882da7705432659a18a419c508e8bfccb1"; 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}