mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: python-hicexplorer: Fix build.
* gnu/packages/bioinformatics.scm (python-hicexplorer)[snippet]: Remove catchall pattern of patch version numbers in setup.py.
This commit is contained in:
parent
8df79db37a
commit
4f53dff911
1 changed files with 10 additions and 1 deletions
|
@ -16790,7 +16790,16 @@ (define-public python-hicexplorer
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1yavgxry38g326z10bclvdf8glmma05fxj5m73h15m1r2l9xmw3v"))))
|
||||
"1yavgxry38g326z10bclvdf8glmma05fxj5m73h15m1r2l9xmw3v"))
|
||||
(modules '((guix build utils)))
|
||||
;; setup.py is malformed. The requirements are defined using a catchall
|
||||
;; pattern for the patch version number. This has been fixed in version
|
||||
;; 3.7.3, but we cannot upgrade to this version yet, since some Guix
|
||||
;; packages are not new enough. (See upstream commit
|
||||
;; 4845c715ec7b105e938d0c2426e27d0181690bfe for the fix).
|
||||
(snippet '(substitute* "setup.py"
|
||||
(("\\.\\*")
|
||||
"")))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
|
Loading…
Reference in a new issue