diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-05 17:06:42 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:30 +0200 |
commit | 32b3bcefd1ace4a0aaf5ee87f02b5317d1feb969 (patch) | |
tree | bfcf07426e4356500fec4b2251ffe746210f1ebf | |
parent | 77a60228ed4d9367362742056c0d14bcce28c911 (diff) | |
download | guix-32b3bcefd1ace4a0aaf5ee87f02b5317d1feb969.tar.gz guix-32b3bcefd1ace4a0aaf5ee87f02b5317d1feb969.zip |
gnu: python-dropbox: Move python-web.
* gnu/packages/file-systems.scm (python-dropbox): Move from here ...
* gnu/packages/python-web.scm: .. to here.
Change-Id: Ib75e507a4c3d98becdd606b466bb360e77956637
-rw-r--r-- | gnu/packages/file-systems.scm | 27 | ||||
-rw-r--r-- | gnu/packages/python-web.scm | 27 |
2 files changed, 27 insertions, 27 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 44df7aaad2..b7ebf61beb 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -2035,33 +2035,6 @@ compatible directories.") (home-page "https://github.com/trapexit/mergerfs-tools") (license license:isc)))) -(define-public python-dropbox - (package - (name "python-dropbox") - (version "12.0.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "dropbox" version)) - (sha256 - (base32 "0qlrc2ykl7zmv808apqv5ycfzrwnm13ngz1daizh9kszmpapy1ah")) - (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 not included in the release tarball. - (native-inputs - (list python-pytest python-pytest-runner)) - (propagated-inputs - (list python-requests python-six python-stone)) - (home-page "https://www.dropbox.com/developers") - (synopsis "Official Dropbox API Client") - (description "This package provides a Python SDK for integrating with the -Dropbox API v2.") - (license license:expat))) - (define-public dbxfs (package (name "dbxfs") diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1945a53425..5385c78c2c 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -392,6 +392,33 @@ Async mode for @url{https://domainconnect.org/, Domain Connect protocol}.") @url{https://www.domainconnect.org/, Domain Connect} protocol.") (license license:expat))) +(define-public python-dropbox + (package + (name "python-dropbox") + (version "12.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dropbox" version)) + (sha256 + (base32 "0qlrc2ykl7zmv808apqv5ycfzrwnm13ngz1daizh9kszmpapy1ah")) + (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 not included in the release tarball. + (native-inputs + (list python-pytest python-pytest-runner)) + (propagated-inputs + (list python-requests python-six python-stone)) + (home-page "https://www.dropbox.com/developers") + (synopsis "Official Dropbox API Client") + (description "This package provides a Python SDK for integrating with the +Dropbox API v2.") + (license license:expat))) + (define-public python-eventlet (package (name "python-eventlet") |