mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
smassh,
|
|
python311,
|
|
testers,
|
|
}:
|
|
|
|
let
|
|
python3 = python311;
|
|
in
|
|
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";
|
|
};
|
|
}
|