python3Packages.mistletoe: init at 0.7.2
This commit is contained in:
parent
496cbef3d1
commit
0f5c7d2bfb
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3655,6 +3655,8 @@ in {
|
||||||
|
|
||||||
misaka = callPackage ../development/python-modules/misaka { };
|
misaka = callPackage ../development/python-modules/misaka { };
|
||||||
|
|
||||||
|
mistletoe = callPackage ../development/python-modules/mistletoe { };
|
||||||
|
|
||||||
mistune = callPackage ../development/python-modules/mistune { };
|
mistune = callPackage ../development/python-modules/mistune { };
|
||||||
|
|
||||||
mitmproxy = callPackage ../development/python-modules/mitmproxy { };
|
mitmproxy = callPackage ../development/python-modules/mitmproxy { };
|
||||||
|
|
Loading…
Reference in New Issue