python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / termtosvg / default.nix
bloba4e624f18f31338e02ac20da058cc95c72a02af6
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "termtosvg";
5   version = "1.1.0";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "1vk5kn8w3zf2ymi76l8cpwmvvavkmh3b9lb18xw3x1vzbmhz2f7d";
10   };
12   propagatedBuildInputs = with python3Packages; [ lxml pyte wcwidth ];
14   meta = with lib; {
15     homepage = "https://nbedos.github.io/termtosvg/";
16     description = "Record terminal sessions as SVG animations";
17     license = licenses.bsd3;
18     maintainers = with maintainers; [ ];
19   };