frogmouth: init at 0.5.0

This commit is contained in:
figsoda
2023-05-15 09:30:59 -04:00
parent 875c926273
commit 2632233a8a
2 changed files with 45 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "frogmouth";
version = "0.5.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "Textualize";
repo = "frogmouth";
rev = "v${version}";
hash = "sha256-5MNQ78zwjtenHDjy2g1rjiq4HvFie7uUSlMwZu6RmXg=";
};
nativeBuildInputs = [
python3.pkgs.poetry-core
python3.pkgs.pythonRelaxDepsHook
];
propagatedBuildInputs = with python3.pkgs; [
httpx
textual
typing-extensions
xdg
];
pythonRelaxDeps = [
"xdg"
];
pythonImportsCheck = [ "frogmouth" ];
meta = with lib; {
description = "A Markdown browser for your terminal";
homepage = "https://github.com/Textualize/frogmouth";
changelog = "https://github.com/Textualize/frogmouth/blob/${src.rev}/ChangeLog.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}
+2
View File
@@ -4833,6 +4833,8 @@ with pkgs;
frei = callPackage ../tools/misc/frei { };
frogmouth = callPackage ../tools/text/frogmouth { };
fselect = callPackage ../tools/misc/fselect { };
fsmon = callPackage ../tools/misc/fsmon { };