M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +0 -45
@@ 14438,51 14438,6 @@ following CLI scripts:
(properties (alist-delete 'hidden? (package-properties
python-ipyparallel-bootstrap)))))
-(define-public python-ipython-cluster-helper
- (package
- (name "python-ipython-cluster-helper")
- (version "0.6.4")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "ipython-cluster-helper" version))
- (sha256
- (base32
- "1l6mlwxlkxpbvawfwk6qffich7ahg9hq2bxfissgz6144p3k4arj"))
- (modules '((guix build utils)))
- (snippet
- '(begin (substitute* "requirements.txt"
- (("ipython.*") "ipython\n"))
- #t))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f ; Test suite can't find IPython.
- #:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (if tests?
- (begin
- (setenv "HOME" (getcwd))
- (add-installed-pythonpath inputs outputs)
- (invoke "python" "example/example.py" "--local"))
- #t))))))
- (propagated-inputs
- (list python-ipyparallel
- python-ipython
- python-netifaces
- python-pyzmq
- python-setuptools
- python-six))
- (home-page "https://github.com/roryk/ipython-cluster-helper")
- (synopsis
- "Simplify IPython cluster start up and use for multiple schedulers")
- (description
- "@code{ipython-cluster-helper} creates a throwaway parallel IPython
-profile, launches a cluster and returns a view. On program exit it shuts the
-cluster down and deletes the throwaway profile.")
- (license license:expat)))
-
;; TODO: Package python-jupysql which is the maintained fork of this one.
(define-public python-ipython-sql
(package