[bug#71758,python-team] gnu: python-immutables: Update to 0.20.
Commit Message
* gnu/packages/python-xyz.scm (python-immutables): Update to 0.20.
[origin]: Use git-fetch as pypi package does not contain test-data
folder.
Change-Id: I9e7f632a9ff38d1b0f1f3efdb6a7dc0123214536
---
This fixes the build failure of python-immutables on the python-team
branch.
gnu/packages/python-xyz.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
base-commit: e4ad2f178af65be6c8ca6e98a667787674cd8c82
Comments
Hi,
This doesn't apply for me.
Can you send with git send-email?
jgart@whereiseveryone:~/Code/guix-latest [env]$ mumi current 71758
#71758 [PATCH python-team] gnu: python-immutables: Update to 0.20.
opened on 24 Jun 15:06 -0500 by Felix Gruber
jgart@whereiseveryone:~/Code/guix-latest [env]$ mumi am -- -s -S
No patches found
Hi jgart,
On 7/13/24 4:11 PM, jgart wrote:
> This doesn't apply for me.
>
> Can you send with git send-email?
>
> jgart@whereiseveryone:~/Code/guix-latest [env]$ mumi current 71758
> #71758 [PATCH python-team] gnu: python-immutables: Update to 0.20.
> opened on 24 Jun 15:06 -0500 by Felix Gruber
> jgart@whereiseveryone:~/Code/guix-latest [env]$ mumi am -- -s -S
> No patches found
I had created this patch against the python-team branch, it shows a
merge conflict if I try to apply it to master. I will shortly sent an
updated patch, rebased to the master branch.
Kind regards,
Felix
@@ -15868,13 +15868,17 @@ (define-public python-xlwt
(define-public python-immutables
(package
(name "python-immutables")
- (version "0.18")
+ (version "0.20")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "immutables" version))
+ ;; The PyPI package does not contain the test-data directory.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/MagicStack/immutables")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1x4cinh0xbl6p6p2yfm2s07mxxy3lf0zzai9gqpydk4482bwfdjk"))))
+ (base32 "047z7xvdkr55c372sn7m3y8762w5kgh5yn1h9gq5qhcnzss04hbw"))))
(build-system pyproject-build-system)
(native-inputs
(list python-mypy python-pytest python-setuptools python-wheel))