cairosvg: add cli (#343998)

This commit is contained in:
Pol Dellaiera 2024-10-03 05:08:06 +02:00 committed by GitHub
commit c98ddb9204
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 ];
};
}