From e1dcf86a357eb617fa3afc32b4032435b9e7291f Mon Sep 17 00:00:00 2001 From: Rikard Nordgren Date: Sun, 25 Jun 2023 18:46:14 +0000 Subject: gnu: Add python-beziers. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fontutils.scm (python-beziers): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/fontutils.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/fontutils.scm') diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index c50b11b949..abb79711da 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -371,6 +371,37 @@ (define-public python-afdko-3.6.1 python-ufonormalizer python-ufoprocessor)))) +(define-public python-beziers + (package + (name "python-beziers") + (version "0.5.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/simoncozens/beziers.py") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1dyr45m15sclbgaz1mrcnw8kny50h09gd45dlpfkgv9qpfxphkg3")))) + (build-system python-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv"))))))) + (native-inputs (list python-pytest python-dotmap python-matplotlib)) + (propagated-inputs (list python-pyclipper)) + (home-page "https://simoncozens.github.io/beziers.py/index.html") + (synopsis "Python bezier manipulation library") + (description + "Beziers provides a variety of classes for constructing, +manipulating and drawing Bezier curves and paths. Principally designed for +font design software, it allows you to join, split, offset, and perform many +other operations on paths.") + (license license:expat))) + (define-public python-cffsubr (package (name "python-cffsubr") -- cgit v1.2.3