guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 5161b8d1b7a202c415db8b143f4ba864aaae3b5f
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Jan 17 21:37:29 2026 +0100
gnu: python-invoke: Drop phase 'fix-entry-points.
* gnu/packages/python-xyz.scm (python-invoke)[arguments]<#:phases>:
Drop phase 'fix-entry-points.
Change-Id: Ibfeff99cba7fa4badb0dee42dda306c69e998ee6
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d36836bfb7..9e3967044b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24119,15 +24119,7 @@ manipulation and interaction with formal grammars.")
(let ((bash #$(this-package-input "bash-minimal")))
(substitute* "invoke/config.py"
(("shell = \"/bin/bash\"")
- (string-append "shell = \"" bash "/bin/bash\""))))))
- (add-after 'wrap 'fix-entry-points
- ;; TODO: Remove after https://codeberg.org/guix/guix/issues/4509
- ;; is fixed.
- (lambda _
- (substitute* (list (string-append #$output "/bin/.invoke-real")
- (string-append #$output "/bin/.inv-real"))
- (("from invoke.main import program.run")
- "from invoke.main import program")))))))
+ (string-append "shell = \"" bash "/bin/bash\"")))))))))
(native-inputs
(list python-setuptools
python-wheel))