nixpkgs/pkgs/tools/text/frogmouth/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

46 lines
958 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "frogmouth";
version = "0.9.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "Textualize";
repo = "frogmouth";
rev = "v${version}";
hash = "sha256-0fcCON/M9JklE7X9aRfzTkEFG4ckJqLoQlYCSrWHHGQ=";
};
nativeBuildInputs = [
python3.pkgs.poetry-core
python3.pkgs.pythonRelaxDepsHook
];
propagatedBuildInputs = with python3.pkgs; [
httpx
textual
typing-extensions
xdg
];
pythonRelaxDeps = [
"httpx"
"textual"
];
pythonImportsCheck = [ "frogmouth" ];
meta = with lib; {
description = "A Markdown browser for your terminal";
mainProgram = "frogmouth";
homepage = "https://github.com/Textualize/frogmouth";
changelog = "https://github.com/Textualize/frogmouth/blob/${src.rev}/ChangeLog.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}