2018-07-03 17:17:31 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub, glibcLocales }:
|
2016-06-02 19:55:19 +01:00
|
|
|
|
2018-06-03 09:59:58 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "asciinema";
|
2019-01-13 22:25:12 +00:00
|
|
|
version = "2.0.2";
|
2016-06-02 19:55:19 +01:00
|
|
|
|
2016-08-19 11:32:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "asciinema";
|
|
|
|
repo = "asciinema";
|
|
|
|
rev = "v${version}";
|
2019-01-13 22:25:12 +00:00
|
|
|
sha256 = "1a2pysxnp6icyd08mgf66xr6f6j0irnfxdpf3fmzcz31ix7l9kc4";
|
2016-08-19 11:32:22 +01:00
|
|
|
};
|
|
|
|
|
2019-01-14 13:14:38 +00:00
|
|
|
checkInputs = [ glibcLocales python3Packages.nose ];
|
2018-07-03 17:17:31 +01:00
|
|
|
|
2016-08-19 11:32:22 +01:00
|
|
|
checkPhase = ''
|
2018-07-03 17:17:31 +01:00
|
|
|
LC_ALL=en_US.UTF-8 nosetests
|
2016-08-19 11:32:22 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Terminal session recorder and the best companion of asciinema.org";
|
|
|
|
homepage = https://asciinema.org/;
|
|
|
|
license = with lib.licenses; [ gpl3 ];
|
2016-06-02 19:55:19 +01:00
|
|
|
};
|
|
|
|
}
|
2016-08-19 11:32:22 +01:00
|
|
|
|