From b1946b7d23b99f89550ef35173f51c76a51038b4 Mon Sep 17 00:00:00 2001
* gnu/packages/python-xyz.scm (pyzo): New variable.
gnu/packages/python-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Toggle diff (49 lines)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d0da9b36c3..09a1a5534d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18358,3 +18358,42 @@ sequences.")
(define-public python2-fuzzywuzzy
(package-with-python2 python-fuzzywuzzy))
+ (uri (pypi-uri "pyzo" version))
+ (base32 "1zplxcb78qy8qibifmnsx5i9gnlfmw9n6nr4yflsabpxw57mx4m1"))))
+ (build-system python-build-system)
+ (modify-phases %standard-phases
+ (add-before 'check 'fix-home-directory
+ ;; Tests fail with "Permission denied:
+ ;; '/homeless-shelter'".
+ ;; Tests fail with "Uncaught Python exception: invalid literal
+ ;; for int() with base 10: 'test'".
+ `(("python-pyqt" ,python-pyqt)))
+ (home-page "https://pyzo.org")
+ "Python IDE for scientific computing")
+ "Pyzo is a Python IDE focused on interactivity and introspection,
+which makes it very suitable for scientific computing. Its practical
+design is aimed at simplicity and efficiency.
+It consists of two main components, the editor and the shell, and uses
+a set of pluggable tools to help the programmer in various ways. Some
+example tools are source structure, project manager, interactive help,
+ (license license:bsd-2)))