2018-06-23 06:27:58 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
2017-01-13 15:09:18 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "markdown2";
|
2018-10-06 03:56:18 -07:00
|
|
|
version = "2.3.6";
|
2017-01-13 15:09:18 -08:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2018-10-06 03:56:18 -07:00
|
|
|
sha256 = "08a124043aa0ad36ba2136239547d5011a2b770278abb11a5609611e0040ea05";
|
2017-01-13 15:09:18 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A fast and complete Python implementation of Markdown";
|
|
|
|
homepage = https://github.com/trentm/python-markdown2;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ hbunke ];
|
|
|
|
};
|
|
|
|
}
|