nixpkgs/pkgs/development/python-modules/md2gemini/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
666 B
Nix
Raw Normal View History

2021-03-29 00:00:00 +00:00
{ lib, buildPythonPackage, fetchPypi, mistune_2_0, cjkwrap, wcwidth
, pytestCheckHook }:
buildPythonPackage rec {
pname = "md2gemini";
2021-12-24 04:49:35 +00:00
version = "1.9.0";
2021-03-29 00:00:00 +00:00
propagatedBuildInputs = [ mistune_2_0 cjkwrap wcwidth ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "md2gemini" ];
src = fetchPypi {
inherit pname version;
2021-12-24 04:49:35 +00:00
sha256 = "sha256-d1zuK+NqoPS36ihh8qx9gOET94tApY+SGStsc/bITnU=";
2021-03-29 00:00:00 +00:00
};
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 ];
};
}