13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
23 lines
658 B
Nix
23 lines
658 B
Nix
{ lib, buildPythonPackage, fetchPypi, mistune, cjkwrap, wcwidth
|
|
, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "md2gemini";
|
|
version = "1.9.0";
|
|
|
|
propagatedBuildInputs = [ mistune cjkwrap wcwidth ];
|
|
checkInputs = [ pytestCheckHook ];
|
|
pythonImportsCheck = [ "md2gemini" ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-d1zuK+NqoPS36ihh8qx9gOET94tApY+SGStsc/bITnU=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Markdown to Gemini text format conversion library";
|
|
homepage = "https://github.com/makeworld-the-better-one/md2gemini";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = [ maintainers.kaction ];
|
|
};
|
|
}
|