typr: init at 1.0.1.20

Update pkgs/by-name/ty/typr/package.nix

Co-authored-by: Acid Bong <acidbong@tilde.club>

fix: remove installPhase

tests are absent in tests directory upstream

Update pkgs/by-name/ty/typr/package.nix

Co-authored-by: Acid Bong <acidbong@tilde.club>

Update pkgs/by-name/ty/typr/package.nix

Co-authored-by: Gaétan Lepage <gaetan@glepage.com>

fix packaging

Update pkgs/by-name/ty/typr/package.nix

Co-authored-by: Acid Bong <acidbong@tilde.club>

Update pkgs/by-name/ty/typr/package.nix

Co-authored-by: Acid Bong <acidbong@tilde.club>

chore: version 1.0.1.20 -> 1.0.1.21

chore: remove pkgs/by-name/ty/typr/pyproject.patch

Update pkgs/by-name/ty/typr/package.nix

Co-authored-by: Gaétan Lepage <gaetan@glepage.com>

fix: remove unused python attribute
This commit is contained in:
Artur Sannikov
2025-09-26 12:08:48 +02:00
parent 4dbf8d7cbd
commit 1981a619ae
+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";
};
}