me
/
guix
Archived
1
0
Fork 0

gnu: python-fit-nbinom: Remove syntax error in setup.py.

* gnu/packages/python-xyz.scm (python-fit-nbinom)[arguments]: Add
phase 'remove-invalid-syntax.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Mădălin Ionel Patrașcu 2023-09-18 06:35:33 +02:00 committed by Ricardo Wurmus
parent 1c8e159335
commit 83598dafb9
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 8 additions and 0 deletions

View File

@ -582,6 +582,14 @@ and variables you'll need already imported and created.
(base32
"12v8l5i35vjbpvh5i4lw29ys6vpr3z7pysyrx33hxaq09zr015mx"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'remove-invalid-syntax
(lambda _
(substitute* "setup.py"
((".\\*\"") "\"")))))))
(propagated-inputs (list python-numpy python-scipy))
(home-page "https://github.com/joachimwolff/fit_nbinom")
(synopsis "Negative binomial maximum likelihood estimator")