diff options
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index d57d407d9c..f8959f208d 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2017 Gábor Boskovits <[email protected]> ;;; Copyright © 2017, 2018, 2021 Ricardo Wurmus <[email protected]> ;;; Copyright © 2018 Leo Famulari <[email protected]> -;;; Copyright © 2019-2022 Efraim Flashner <[email protected]> +;;; Copyright © 2019-2023 Efraim Flashner <[email protected]> ;;; Copyright © 2020 Raghav Gururajan <[email protected]> ;;; Copyright © 2020 Morgan Smith <[email protected]> ;;; Copyright © 2021 raid5atemyhomework <[email protected]> @@ -1698,13 +1698,18 @@ compatible directories.") (define-public python-dropbox (package (name "python-dropbox") - (version "11.33.0") + (version "11.36.0") (source (origin (method url-fetch) (uri (pypi-uri "dropbox" version)) (sha256 - (base32 "1hd9gprvcr6h0p8fxhynf97qf6799whfpsmr73g619392598nqvw")))) + (base32 "0iwbi1qdw9qr7isa37yys582am59k80dqrwvm6s0afdwv0ifa343")) + (snippet + '(begin + (use-modules (guix build utils)) + (substitute* "setup.py" + (("pytest-runner == 5\\.2\\.0") "pytest-runner")))))) (build-system python-build-system) (arguments '(#:tests? #f)) ; Tests require a network connection. (native-inputs |