about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/emulators/termtekst/default.nix
blob: 56f56cffad9735cd58a6961f4371f4f5c4be3086 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, fetchFromGitHub, python3Packages, ncurses }:

python3Packages.buildPythonApplication rec {
  pname = "termtekst";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "zevv";
    repo = pname;
    rev = "v${version}";
    sha256 = "1gm7j5d49a60wm7px82b76f610i8pl8ccz4r6qsz90z4mp3lyw9b";
  };

  propagatedBuildInputs = with python3Packages; [ ncurses requests ];

  patchPhase = ''
    substituteInPlace setup.py \
      --replace "assert" "assert 1==1 #"
    substituteInPlace src/tt \
      --replace "locale.setlocale" "#locale.setlocale"
    '';

  meta = with lib; {
    description = "Console NOS Teletekst viewer in Python";
    longDescription = ''
      Small Python app using curses to display Dutch NOS Teletekst on
      the Linux console. The original Teletekst font includes 2x6
      raster graphics glyphs which have no representation in unicode;
      as a workaround the braille set is abused to approximate the
      graphics.
    '';
    license = licenses.mit;
    maintainers = with maintainers; [ leenaars ];
    platforms = platforms.all;
  };
}