cairosvg: add cli

This commit is contained in:
Sarah Clark 2024-09-23 09:17:45 -07:00
parent 7c9634c324
commit d2300b8913
2 changed files with 6 additions and 3 deletions

View File

@ -0,0 +1,3 @@
{ python3Packages }:
python3Packages.toPythonApplication python3Packages.cairosvg

View File

@ -50,12 +50,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "cairosvg" ];
meta = with lib; {
meta = {
homepage = "https://cairosvg.org";
changelog = "https://github.com/Kozea/CairoSVG/releases/tag/${version}";
license = licenses.lgpl3Plus;
license = lib.licenses.lgpl3Plus;
description = "SVG converter based on Cairo";
mainProgram = "cairosvg";
maintainers = [ ];
maintainers = [ lib.maintainers.sarahec ];
};
}