From: Vinicius Monego <monego@posteo.net>
To: 42560@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#42560] [PATCH] gnu: Add python-libsass.
Date: Mon, 27 Jul 2020 11:44:04 -0300 [thread overview]
Message-ID: <20200727144404.54894-1-monego@posteo.net> (raw)
* gnu/packages/python-xyz.scm (python-libsass): New variable.
---
gnu/packages/python-xyz.scm | 44 +++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 446e0a6def..d05fa4ae11 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8748,6 +8748,50 @@ specification.")
(define-public python2-idna
(package-with-python2 python-idna))
+(define-public python-libsass
+ (package
+ (name "python-libsass")
+ (version "0.20.0")
+ (source
+ (origin
+ ;; PyPI tarball is missing some test files.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sass/libsass-python")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0h9rj4k9izkfdvli8ip72bbvh6a7bvrv5pxz6zay2bq235gpfgfc"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Use Guix package of libsass instead of compiling from a checkout.
+ (add-before 'build 'set-libsass
+ (lambda _
+ (setenv "SYSTEM_SASS" (assoc-ref %build-inputs "libsass"))
+ #t))
+ (replace 'check
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (add-installed-pythonpath inputs outputs)
+ (invoke "pytest" "sasstests.py" "-k"
+ ;; See https://github.com/sass/libsass/issues/3092.
+ ;; This test may work in a future release of libsass.
+ "not test_stack_trace_formatting"))))))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-werkzeug" ,python-werkzeug)))
+ (inputs
+ `(("libsass" ,libsass)))
+ (propagated-inputs
+ `(("python-six" ,python-six)))
+ (home-page "https://sass.github.io/libsass-python/")
+ (synopsis "Straightforward binding of libsass for Python")
+ (description
+ "This package provides a simple Python extension module @code{sass} which
+is binding LibSass.")
+ (license license:expat)))
+
(define-public python-idna-ssl
(package
(name "python-idna-ssl")
--
2.20.1
next reply other threads:[~2020-07-27 14:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-27 14:44 Vinicius Monego [this message]
2020-07-29 5:12 ` bug#42560: [PATCH] gnu: Add python-libsass Oleg Pykhalov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200727144404.54894-1-monego@posteo.net \
--to=monego@posteo.net \
--cc=42560@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).