mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 16:08:04 -05:00
gnu: python-databind-core: Allow newer versions of typing-extensions.
* gnu/packages/python-xyz.scm (python-databind-core)[source]: Add snippet to allow newer versions of python-typing-extensions. Change-Id: I8515c4767d6241542a53746f3654074010ab25f1
This commit is contained in:
parent
0da09b370c
commit
0ae4b8c42a
1 changed files with 7 additions and 1 deletions
|
@ -578,7 +578,13 @@ (define-public python-databind-core
|
|||
(method url-fetch)
|
||||
(uri (pypi-uri "databind.core" version))
|
||||
(sha256
|
||||
(base32 "130hr19kbzizx9n2q7cwfzfk20ii3cqmqjrzb16psnafll303k2d"))))
|
||||
(base32 "130hr19kbzizx9n2q7cwfzfk20ii3cqmqjrzb16psnafll303k2d"))
|
||||
(snippet
|
||||
#~(begin (use-modules (guix build utils))
|
||||
;; The problem with python-typing-extensions >= 4.7 is only
|
||||
;; with python-3.7.
|
||||
(substitute* "pyproject.toml"
|
||||
((",<4.7.*") "\"\n"))))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
|
Loading…
Reference in a new issue