summary refs log tree commit diff
path: root/pkgs/tools/misc/asciinema/default.nix
blob: 1915d0dc842227443470e7526f4a57def28ded75 (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
{ lib, python3Packages, fetchFromGitHub, glibcLocales }:

python3Packages.buildPythonApplication rec {
  pname = "asciinema";
  version = "2.0.2";

  propagatedBuildInputs = with python3Packages; [ requests ];

  src = fetchFromGitHub {
    owner = "asciinema";
    repo = "asciinema";
    rev = "v${version}";
    sha256 = "1a2pysxnp6icyd08mgf66xr6f6j0irnfxdpf3fmzcz31ix7l9kc4";
  };

  checkInputs = [ glibcLocales python3Packages.nose ];

  checkPhase = ''
    LC_ALL=en_US.UTF-8 nosetests
  '';

  meta = {
    description = "Terminal session recorder and the best companion of asciinema.org";
    homepage = https://asciinema.org/;
    license = with lib.licenses; [ gpl3 ];
  };
}