mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-svgelements.
* gnu/packages/python-xyz.scm (python-svgelements): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: Ic42dc142ba63ccf8c1bfa72a69b43afd7344b327
This commit is contained in:
parent
c9d60ff823
commit
4473f8ae90
1 changed files with 28 additions and 0 deletions
|
@ -157,6 +157,7 @@
|
|||
;;; Copyright © 2024 Rick Huijzer <ikbenrickhuyzer@gmail.com>
|
||||
;;; Copyright © 2024 Peter Kannewitz <petre-vps@posteo.net>
|
||||
;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org>
|
||||
;;; Copyright © 2024 Evgeny Pisemsky <mail@pisemsky.site>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -32224,6 +32225,33 @@ For the most part it's transliterated from C, the major differences are:
|
|||
"Jinxed is an implementation of a subset of the Python curses library.")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public python-svgelements
|
||||
(package
|
||||
(name "python-svgelements")
|
||||
(version "1.9.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "svgelements" version))
|
||||
(sha256
|
||||
(base32 "1xrp7yxg65dqdrmghriljf9hh2smq2zhzr2hzmqifgfd0ijas0kw"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-anyio
|
||||
python-pytest
|
||||
python-numpy
|
||||
python-pillow
|
||||
python-scipy
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(home-page "https://github.com/meerk40t/svgelements")
|
||||
(synopsis "SVG parsing for elements, paths, and other SVG objects")
|
||||
(description
|
||||
"This module does high fidelity SVG parsing and geometric rendering.
|
||||
The goal is to successfully and correctly process SVG for use with any scripts
|
||||
that may need or want to use SVG files as geometric data.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-svgutils
|
||||
(package
|
||||
(name "python-svgutils")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue