nixpkgs/pkgs/tools/misc/termtosvg/default.nix

21 lines
546 B
Nix
Raw Normal View History

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