depot/third_party/nixpkgs/pkgs/tools/text/frogmouth/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

44 lines
923 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "frogmouth";
version = "0.7.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "Textualize";
repo = "frogmouth";
rev = "v${version}";
hash = "sha256-XKIGZ100aK5ZCsPxxakXhymYXXFYo7S+chMFs7jwXtw=";
};
nativeBuildInputs = [
python3.pkgs.poetry-core
python3.pkgs.pythonRelaxDepsHook
];
propagatedBuildInputs = with python3.pkgs; [
httpx
textual
typing-extensions
xdg
];
pythonRelaxDeps = [
"httpx"
"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 ];
};
}