biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / lerpn / default.nix
blobfcbd6e9513cd84aada8fb591e43a20d1ca950908
1 { python3
2 , lib
3 , fetchFromGitea
4 }:
6 python3.pkgs.buildPythonApplication {
7   pname = "lerpn";
8   version = "unstable-2023-06-09";
10   src = fetchFromGitea {
11     domain = "gitea.alexisvl.rocks";
12     owner = "alexisvl";
13     repo = "lerpn";
14     rev = "b65e56cfbbb38f8200e7b0c18b3a585ae768c6e2";
15     hash = "sha256-4xqBHcOWHAvQtXS9CJWTGTdE4SGHxjghZY+/KPUgX70=";
16   };
18   checkPhase = ''
19     runHook preCheck
20     patchShebangs test
22     substituteInPlace test --replace "#raise TestFailedException()" "sys.exit(1)"
23     ./test
24     runHook postCheck
25   '';
27   meta = with lib; {
28     homepage = "https://gitea.alexisvl.rocks/alexisvl/lerpn";
29     description = "Curses RPN calculator written in straight Python";
30     maintainers = [ ];
31     license = licenses.gpl3Plus;
32     mainProgram = "lerpn";
33   };