diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-01 16:34:38 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-01 22:21:01 +0100 |
commit | a9c0a133c045f82e1084e7485c6cc65ace131fa3 (patch) | |
tree | 09cf8bbcd00bb57b884dba5063789e48e723f458 /gnu | |
parent | 68e7632db052105b70704cd2c1cc42a568e9bf4a (diff) | |
download | patches-a9c0a133c045f82e1084e7485c6cc65ace131fa3.tar patches-a9c0a133c045f82e1084e7485c6cc65ace131fa3.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0b7ff440f0..126424183b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -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") |