~ruther/guix-local

a9c0a133c045f82e1084e7485c6cc65ace131fa3 — Tobias Geerinckx-Rice 8 years ago 68e7632
gnu: python-stem: Update to 1.6.0.

* gnu/packages/python.scm (python-stem): Update to 1.6.0.
[arguments]: Add ‘fix-test-environment’ phase.
1 files changed, 9 insertions(+), 2 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +9 -2
@@ 9352,18 9352,25 @@ etc.")
(define-public python-stem
  (package
    (name "python-stem")
    (version "1.5.4")
    (version "1.6.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "stem" version))
       (sha256
        (base32
         "1j7pnblrn0yr6jmxvsq6y0ihmxmj5x50jl2n2606w67f6wq16j9n"))))
         "1va9p3ij7lxg6ixfsvaql06dn11l3fgpxmss1dhlvafm7sqizznp"))))
    (build-system python-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-before 'check 'fix-test-environment
           (lambda _
             ;; Fixes: FileNotFoundError: [Errno 2] No such file or directory:
             ;; '/tmp/guix-build-python-stem-1.6.0.drv-0/stem-1.6.0/.gitignore'.
             (with-output-to-file ".gitignore"
               (lambda _ (format #t "%")))
             #t))
         (replace 'check
           (lambda _
             (invoke "./run_tests.py" "--unit")