~ruther/guix-local

5e04db03feb6c2d0809ca1c4124bc47b92c0d278 — Nicolas Graves 6 months ago 47809a1
gnu: python-sfdlib: Update to 1.2.5.

* gnu/packages/fontutils.scm (python-sfdlib): Update to 1.2.5.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
[description]: Improve style.

Change-Id: Ic99aa86302afb4212e18118f39fae23ae2d3a371
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 17 insertions(+), 14 deletions(-)

M gnu/packages/fontutils.scm
M gnu/packages/fontutils.scm => gnu/packages/fontutils.scm +17 -14
@@ 1019,23 1019,26 @@ can be used to hint PostScript fonts.  A Python wrapper is also included.")
(define-public python-sfdlib
  (package
    (name "python-sfdlib")
    (version "1.2.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/aliftype/sfdLib")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1q61km32i1h3cmn8nazcgsbzpm8q2nxp3kq3glqgfgvlxr1s3brm"))))
    (build-system python-build-system)
    (version "1.2.5")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/aliftype/sfdLib")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "00vss0pv7y041rqjlbq8si7319w0mzlkp3ckw150mmxzsrx0m58c"))))
    (build-system pyproject-build-system)
    (arguments (list #:tests? #f))      ; No tests upstream.
    (native-inputs (list python-setuptools))
    (propagated-inputs (list python-ufolib2))
    (home-page "https://github.com/aliftype/sfdLib")
    (synopsis "Simple SFD to UFO converter")
    (description "This package provides the @command{sfd2ufo} command, a
converter from FontForge’s @acronym{SFD, Spline Font Database} fonts to
@acronym{UFO, Unified Font Object} fonts.")
    (description
     "This package provides the @command{sfd2ufo} command, a converter from
FontForge’s @acronym{SFD, Spline Font Database} fonts to @acronym{UFO, Unified
Font Object} fonts.")
    (license license:bsd-3)))

(define-public python-skia-pathops