python3Packages.mistletoe: init at 0.7.2

This commit is contained in:
Edmund Wu 2020-09-05 19:27:24 -04:00 committed by Jon
parent 496cbef3d1
commit 0f5c7d2bfb
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib
, isPy3k
, fetchPypi
, buildPythonPackage }:
buildPythonPackage rec {
pname = "mistletoe";
version = "0.7.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "18z6hqfnfjqnrcgfgl5pkj9ggf9yx0yyy94azcn1qf7hqn6g3l14";
};
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 ];
};
}

View file

@ -3655,6 +3655,8 @@ in {
misaka = callPackage ../development/python-modules/misaka { };
mistletoe = callPackage ../development/python-modules/mistletoe { };
mistune = callPackage ../development/python-modules/mistune { };
mitmproxy = callPackage ../development/python-modules/mitmproxy { };