~ruther/guix-local

baa981f26245ce2e1c6c5cdcab1ab8509ec27a90 — Vinicius Monego 1 year, 7 days ago 2b61c7d
gnu: python-libsass: Update to 0.23.0.

* gnu/packages/python-xyz.scm (python-libsass): Update to 0.23.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
[propagated-inputs]: Remove python-six.

Change-Id: I41aeed35cfe6bdcf53750f871a23db9b6cdb0d5a
1 files changed, 4 insertions(+), 6 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +4 -6
@@ 18132,7 18132,7 @@ specification.")
(define-public python-libsass
  (package
    (name "python-libsass")
    (version "0.22.0")
    (version "0.23.0")
    (source
     (origin
       ;; PyPI tarball is missing some test files.


@@ 18142,8 18142,8 @@ specification.")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0j6c7jb1bnpmz76gs5za41qwgrs7v1yd1jkgvsy5ql6dg2ph9vp4"))))
    (build-system python-build-system)
        (base32 "04jpk4y15k69chdnd64ks85bfn82071mbfiv2d1hl3y4zpvsn90a"))))
    (build-system pyproject-build-system)
    (arguments
     '(#:phases
       (modify-phases %standard-phases


@@ 18178,11 18178,9 @@ specification.")
                                      (search-input-file inputs "bin/python"))))
                           "/site-packages/sasstests.py")))))))
    (native-inputs
     (list python-pytest python-werkzeug))
     (list python-pytest python-setuptools python-werkzeug python-wheel))
    (inputs
     (list libsass))
    (propagated-inputs
     (list python-six))
    (home-page "https://sass.github.io/libsass-python/")
    (synopsis "Straightforward binding of libsass for Python")
    (description