nixpkgs/pkgs/tools/misc/termtosvg/default.nix
R. RyanTM 2948193742 termtosvg: 0.6.0 -> 0.7.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/termtosvg/versions
2018-12-14 00:57:52 -08:00

24 lines
615 B
Nix

{ lib, python3, fetchFromGitHub }:
python3.pkgs.buildPythonApplication rec {
pname = "termtosvg";
version = "0.7.0";
# tests are not available when fetching from pypi
src = fetchFromGitHub {
owner = "nbedos";
repo = pname;
rev = version;
sha256 = "17hhdrsn9ggcrwqp2c1h2la9cwhdazfrczd7nnm5mz7w6rk25lx3";
};
propagatedBuildInputs = with python3.pkgs; [ lxml pyte ];
meta = with lib; {
homepage = https://github.com/nbedos/termtosvg;
description = "Record terminal sessions as SVG animations";
license = licenses.bsd3;
maintainers = with maintainers; [ ma27 ];
};
}