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

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