Robert Schütz
2025-05-25 18:55:13 -07:00
parent 9f38757616
commit 2bfd312d36
@@ -1,7 +1,6 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
poetry-core,
inkex,
@@ -11,9 +10,7 @@
buildPythonPackage rec {
pname = "svg2tikz";
version = "3.3.0";
disabled = pythonOlder "3.7";
version = "3.3.1";
pyproject = true;
@@ -21,7 +18,7 @@ buildPythonPackage rec {
owner = "xyz2tex";
repo = "svg2tikz";
tag = "v${version}";
hash = "sha256-IIsgyDZkNoKjXt1jyCdBkaT5EWTdS6AmJ4evwbw0fdg=";
hash = "sha256-LG8u23pEovF05ApjyxA6AebEjmVtxPxpTp9f2DwkwpM=";
};
build-system = [
@@ -34,6 +31,7 @@ buildPythonPackage rec {
];
pythonRelaxDeps = [
"inkex"
"lxml"
];
@@ -41,12 +39,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "svg2tikz" ];
meta = with lib; {
changelog = "https://github.com/xyz2tex/svg2tikz/blob/${src.rev}/CHANGELOG.md";
meta = {
changelog = "https://github.com/xyz2tex/svg2tikz/blob/${src.tag}/CHANGELOG.md";
homepage = "https://github.com/xyz2tex/svg2tikz";
description = "Set of tools for converting SVG graphics to TikZ/PGF code";
license = licenses.gpl2Plus;
maintainers = with maintainers; [
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
dotlambda
gal_bolle
];