2020-09-25 04:45:31 +00:00
|
|
|
{ lib
|
|
|
|
, isPy3k
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mistletoe";
|
2022-02-10 20:34:41 +00:00
|
|
|
version = "0.8.2";
|
2020-09-25 04:45:31 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-10 20:34:41 +00:00
|
|
|
sha256 = "sha256-ouNU5lPym8r1WZ2JSFEhGaxgN+nC+O53851VRQ59Gmw=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A fast, extensible Markdown parser in pure Python.";
|
|
|
|
homepage = "https://github.com/miyuchina/mistletoe";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
|
|
|
}
|