mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
f19bc96592
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
21 lines
546 B
Nix
21 lines
546 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "termtosvg";
|
|
version = "0.9.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1mf2vlq083mzhja449il78zpvjq6fv36pzakwrqmgxdjbsdyvxbd";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [ lxml pyte wcwidth ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://nbedos.github.io/termtosvg/;
|
|
description = "Record terminal sessions as SVG animations";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ma27 ];
|
|
};
|
|
}
|