summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-25 11:56:31 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-25 12:05:56 +0000
commit8164aaa13ceb1f884aaa58b945c861f7dca8129b (patch)
tree2253eb642f220a4f6cc21ce7e1b3e187708a8bf3 /gnu/packages/python-web.scm
parentbcedef2d749ee02d8c7584508afffa6c67fbc745 (diff)
gnu: python-pyscss: Fix build by addig python-six.
* gnu/packages/python-web.scm (python-pyscss): [propagated-inputs]: Add python-six. [native-inputs]: Remove python-pytest-cov and python-wheel. Change-Id: I62556defdac33df9c7f8551708f694a2d33d0262
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a0d6729bf62..7980e135949 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3495,7 +3495,8 @@ Encryption} (JOSE) Web Standards.")
(define-public python-pyscss
;; XXX: no fresh release supporting Python 3.11, use the latest commit, see
- ;; <https://github.com/Kronuz/pyScss/issues/428>.
+ ;; <https://github.com/Kronuz/pyScss/issues/428>,
+ ;; <https://github.com/Kronuz/pyScss/issues/431>.
(let ((commit "73559d047706ccd4593cf6aa092de71f35164723")
(revision "0"))
(package
@@ -3512,9 +3513,12 @@ Encryption} (JOSE) Web Standards.")
(base32 "00msypxf5dm57gyfp3jxvjinigi4km84v33w83635pms9li2k3y7"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-pytest-cov python-setuptools python-wheel))
+ (list python-pytest
+ python-setuptools))
(inputs
(list pcre))
+ (propagated-inputs
+ (list python-six)) ;hard dependency in scss/compiler.py
(home-page "https://github.com/Kronuz/pyScss")
(synopsis "Scss compiler for Python")
(description