diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 22:58:46 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-25 12:50:56 +0100 |
commit | e16a2d16397aebdb9414848ac0dde33b6fa7d839 (patch) | |
tree | d1c67a018041e1a068425381ce51c2f0605ac84f | |
parent | 115b05af2aefe11b1c73fbeca31b92a4c1ea64ca (diff) | |
download | guix-e16a2d16397aebdb9414848ac0dde33b6fa7d839.tar.gz guix-e16a2d16397aebdb9414848ac0dde33b6fa7d839.zip |
gnu: python-pyscss: 1.4.0-0.73559d0.
* gnu/packages/python-web.scm (python-pyscss): 1.4.0-0.73559d0.
Change-Id: I226351b69eac61be90d0a689c03515a20e9402ad
-rw-r--r-- | gnu/packages/python-web.scm | 47 |
1 files changed, 26 insertions, 21 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 4eee5b9edc..4f5ce4dbd2 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2353,28 +2353,33 @@ Encryption} (JOSE) Web Standards.") (license license:expat))) (define-public python-pyscss - (package - (name "python-pyscss") - (version "1.4.0") - (source - (origin - (method git-fetch) ; no tests in PyPI release - (uri (git-reference - (url "https://github.com/Kronuz/pyScss") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vinddg8sbh3v9n1r1wmvjx6ydk8xp7scbvhb3csl4y9xz7vhk6g")))) - (build-system pyproject-build-system) - (native-inputs - (list python-pytest python-pytest-cov python-setuptools python-wheel)) - (inputs - (list pcre)) - (home-page "https://github.com/Kronuz/pyScss") - (synopsis "Scss compiler for Python") - (description "@code{pyScss} is a compiler for Sass, a superset language of + ;; XXX: no fresh release supporting Python 3.11, use the latest commit, see + ;; <https://github.com/Kronuz/pyScss/issues/428>. + (let ((commit "73559d047706ccd4593cf6aa092de71f35164723") + (revision "0")) + (package + (name "python-pyscss") + (version (git-version "1.4.0" revision commit)) + (source + (origin + (method git-fetch) ; no tests in PyPI release + (uri (git-reference + (url "https://github.com/Kronuz/pyScss") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00msypxf5dm57gyfp3jxvjinigi4km84v33w83635pms9li2k3y7")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-pytest-cov python-setuptools python-wheel)) + (inputs + (list pcre)) + (home-page "https://github.com/Kronuz/pyScss") + (synopsis "Scss compiler for Python") + (description + "@code{pyScss} is a compiler for Sass, a superset language of CSS3 that adds programming capabilities and some other syntactic sugar.") - (license license:expat))) + (license license:expat)))) (define-public python-jsonpickle (package |