typr: init at 1.0.1.20 (#444295)

This commit is contained in:
Gaétan Lepage
2025-09-26 10:55:13 +00:00
committed by GitHub
+32
View File
@@ -0,0 +1,32 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "typr";
version = "1.0.1.21";
pyproject = true;
src = fetchFromGitHub {
owner = "DriftingOtter";
repo = "Typr";
tag = version;
hash = "sha256-49e5tnX/vea3xLJP62Sj2gCdjbfsulIU48X/AR/3IBI=";
};
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [ rich ];
doCheck = false; # absent
meta = {
homepage = "https://github.com/DriftingOtter/Typr";
description = "Your Personal Typing Tutor";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ artur-sannikov ];
mainProgram = "typr";
};
}