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-01-20 15:20:36 +00:00
|
|
|
version = "0.8.0";
|
2018-07-06 13:11:50 +01:00
|
|
|
|
2019-03-12 23:46:27 +00:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "e3a0a7bd511028c96d242525df807a23e6f22e55b111a7ee861f294a86224b0c";
|
2018-07-06 13:11:50 +01:00
|
|
|
};
|
|
|
|
|
2019-03-12 23:46:27 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ lxml pyte ];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|