python3Packages.markdownify: init at 0.11.4

This commit is contained in:
Nguyễn Gia Phong
2022-08-29 19:11:43 +09:00
parent 324c8aaf25
commit dec78712ca
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, beautifulsoup4
, six
}:
buildPythonPackage rec {
pname = "markdownify";
version = "0.11.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-crOkiv/M8v7rJd/Tvsq67PU76vTgi+aNzthEcniDKBM=";
};
propagatedBuildInputs = [ beautifulsoup4 six ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "HTML to Markdown converter";
homepage = "https://github.com/matthewwithanm/python-markdownify";
license = licenses.mit;
maintainers = [ maintainers.McSinyx ];
};
}
+2
View File
@@ -5447,6 +5447,8 @@ in {
markdown-macros = callPackage ../development/python-modules/markdown-macros { };
markdownify = callPackage ../development/python-modules/markdownify { };
markdownsuperscript = callPackage ../development/python-modules/markdownsuperscript { };
markerlib = callPackage ../development/python-modules/markerlib { };