termtosvg: 0.7.0 -> 0.8.0

This commit is contained in:
Vladyslav Mykhailichenko 2019-01-20 17:20:36 +02:00
parent 3cac599628
commit e90d43b389
No known key found for this signature in database
GPG key ID: BE743C5DD7703515

View file

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