diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2019-11-02 09:41:33 -0400 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2019-12-07 14:04:16 -0500 |
commit | 09956cce4caefd62e6266e295d62fa1a7150c9e5 (patch) | |
tree | 1c2d032aef37f372d2aec8bf391904ebf8a54b89 /gnu/packages | |
parent | aa2003471f285e44e3c730c53d5944344704e1e7 (diff) | |
download | patches-09956cce4caefd62e6266e295d62fa1a7150c9e5.tar patches-09956cce4caefd62e6266e295d62fa1a7150c9e5.tar.gz |
gnu: python-dbusmock: Update to 0.18.3.
* gnu/packages/python-xyz.scm (python-dbusmock): Update to 0.18.3.
[arguments]: Update phases accordingly.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 10884bc205..e002b972e9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16716,22 +16716,22 @@ for YAML and JSON.") (define-public python-dbusmock (package (name "python-dbusmock") - (version "0.18.1") + (version "0.18.3") (source (origin (method url-fetch) (uri (pypi-uri "python-dbusmock" version)) (sha256 (base32 - "1hj02p65cic4jdc6a5xf1hx8j5icwy7dcrm5kg91lkjks4gwpg5h")))) + "0hp2kyac88nh9iv6l8hlmv7s1sa1s5f1a3wc2pmlmmxnd211fjlr")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-/bin/sh + (add-after 'unpack 'patch-shell-path (lambda _ (substitute* "tests/test_code.py" - (("/bin/sh") (which "sh"))) + (("/bin/bash") (which "bash"))) #t))))) (native-inputs `(;; For tests. |