Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
smassh,
|
|
python3,
|
|
testers,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "smassh";
|
|
version = "3.1.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kraanzu";
|
|
repo = "smassh";
|
|
rev = "v${version}";
|
|
hash = "sha256-P0fZHSsaKIwJspEBxM5MEK3Z4kemXJWlIOQI9cmvlF4=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [ poetry-core ];
|
|
|
|
pythonRelaxDeps = [
|
|
"platformdirs"
|
|
"textual"
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
click
|
|
platformdirs
|
|
requests
|
|
textual
|
|
];
|
|
|
|
# No tests available
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = smassh;
|
|
command = "HOME=$(mktemp -d) smassh --version";
|
|
version = "smassh - v${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "TUI based typing test application inspired by MonkeyType";
|
|
homepage = "https://github.com/kraanzu/smassh";
|
|
changelog = "https://github.com/kraanzu/smassh/blob/main/CHANGELOG.md";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [
|
|
aimpizza
|
|
kraanzu
|
|
];
|
|
mainProgram = "smassh";
|
|
};
|
|
}
|