Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 519 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "markdown2"; 5 version = "2.3.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 extension = "zip"; 10 sha256 = "08a124043aa0ad36ba2136239547d5011a2b770278abb11a5609611e0040ea05"; 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}