2019-03-12 23:46:27 +00:00
|
|
|
{ lib, python3Packages }:
|
2018-07-06 13:11:50 +01:00
|
|
|
|
2019-03-12 23:46:27 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-07-06 13:11:50 +01:00
|
|
|
pname = "termtosvg";
|
2019-07-17 02:18:09 +01:00
|
|
|
version = "0.9.0";
|
2018-07-06 13:11:50 +01:00
|
|
|
|
2019-03-12 23:46:27 +00:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-17 02:18:09 +01:00
|
|
|
sha256 = "1mf2vlq083mzhja449il78zpvjq6fv36pzakwrqmgxdjbsdyvxbd";
|
2018-07-06 13:11:50 +01:00
|
|
|
};
|
|
|
|
|
2019-07-17 02:18:09 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [ lxml pyte wcwidth ];
|
2018-07-06 13:11:50 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2019-01-20 15:20:36 +00:00
|
|
|
homepage = https://nbedos.github.io/termtosvg/;
|
2018-07-06 13:11:50 +01:00
|
|
|
description = "Record terminal sessions as SVG animations";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
};
|
|
|
|
}
|