diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-02-25 10:57:02 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-25 10:57:02 +0200 |
commit | 0ae4b8c42aaa10a23643dd22d266ad38d44569f3 (patch) | |
tree | 50f18e12e01b8ba61b279280036b1fd69da7e77c /gnu/packages/python-xyz.scm | |
parent | 0da09b370cc48ac1c090d7a6f5823186534a96d0 (diff) |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a012241dbd..b97ab7e86e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -578,7 +578,13 @@ workspaces. (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 |