summaryrefslogtreecommitdiff
path: root/gnu/packages/fontutils.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-22 19:43:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-25 21:48:23 +0000
commit63c4ff7fd1e0162c97b82beb5a95279cdfa6ce9e (patch)
tree595aec96770deb96306fc1e92f8f767acbf1b6f2 /gnu/packages/fontutils.scm
parentfca58e725fbb105ac11cfc6d4859ef180ac77acf (diff)
gnu: python-beziers: Update to 0.6.0.
* gnu/packages/fontutils.scm (python-beziers): Update to 0.6.0. [build-system]: Switch to pyproject-build-system. [arguments]: Drop them. [native-inputs]: Add python-setuptools. Change-Id: Ie489d95de14ca79dcd8eb61aad4ef9d8b924159a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r--gnu/packages/fontutils.scm31
1 files changed, 13 insertions, 18 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index aa506fc34b3..98a043af02d 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -450,24 +450,19 @@ but also provides many useful font conversion and analysis facilities.
450(define-public python-beziers 450(define-public python-beziers
451 (package 451 (package
452 (name "python-beziers") 452 (name "python-beziers")
453 (version "0.5.0") 453 (version "0.6.0")
454 (source (origin 454 (source
455 (method git-fetch) 455 (origin
456 (uri (git-reference 456 (method git-fetch)
457 (url "https://github.com/simoncozens/beziers.py") 457 (uri (git-reference
458 (commit (string-append "v" version)))) 458 (url "https://github.com/simoncozens/beziers.py")
459 (file-name (git-file-name name version)) 459 (commit (string-append "v" version))))
460 (sha256 460 (file-name (git-file-name name version))
461 (base32 461 (sha256
462 "1dyr45m15sclbgaz1mrcnw8kny50h09gd45dlpfkgv9qpfxphkg3")))) 462 (base32 "1ww2cc4wi3a3i9wknddjcii2p4r8ksilkqpnbkqg6d7z3jqrcf9n"))))
463 (build-system python-build-system) 463 (build-system pyproject-build-system)
464 (arguments 464 (native-inputs
465 (list #:phases #~(modify-phases %standard-phases 465 (list python-pytest python-dotmap python-matplotlib python-setuptools))
466 (replace 'check
467 (lambda* (#:key tests? #:allow-other-keys)
468 (when tests?
469 (invoke "pytest" "-vv")))))))
470 (native-inputs (list python-pytest python-dotmap python-matplotlib))
471 (propagated-inputs (list python-pyclipper)) 466 (propagated-inputs (list python-pyclipper))
472 (home-page "https://simoncozens.github.io/beziers.py/index.html") 467 (home-page "https://simoncozens.github.io/beziers.py/index.html")
473 (synopsis "Python bezier manipulation library") 468 (synopsis "Python bezier manipulation library")