1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-19 11:27:40 +03:00
niv/nix/termtosvg.nix
2019-04-14 21:11:18 +02:00

23 lines
570 B
Nix

{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "termtosvg";
version = "0.8.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "e3a0a7bd511028c96d242525df807a23e6f22e55b111a7ee861f294a86224b0c";
};
doCheck = false;
propagatedBuildInputs = with python3Packages; [ lxml pyte ];
meta = with lib; {
homepage = https://nbedos.github.io/termtosvg/;
description = "Record terminal sessions as SVG animations";
license = licenses.bsd3;
maintainers = with maintainers; [ ma27 ];
};
}