all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mathieu Othacehe <m.othacehe@gmail.com>
To: 31566@debbugs.gnu.org
Subject: [bug#31566] [PATCH 5/5] gnu: Add python2-gdrivefs.
Date: Wed, 23 May 2018 10:35:22 +0200	[thread overview]
Message-ID: <1527064522-20775-5-git-send-email-m.othacehe@gmail.com> (raw)
In-Reply-To: <1527064522-20775-1-git-send-email-m.othacehe@gmail.com>

* gnu/packages/python.scm (python2-gdrivefs): New variable.
---
 gnu/packages/python.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 665a739..7ca1d26 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13398,3 +13398,44 @@ MacFUSE.  The binding is created using the standard @code{ctypes} library.")
 
 (define-public python2-fusepy
   (package-with-python2 python-fusepy))
+
+(define-public python2-gdrivefs
+  (package
+    (name "python2-gdrivefs")
+    (version "0.14.9")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "gdrivefs" version))
+       (sha256
+        (base32
+         "0v9sp2cfg4ki3wagkwf3rnfpjhvgf845anz3757il9z95yvvcvb7"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:python ,python-2
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'build 'patch-setup-py
+           (lambda _
+             ;; Update requirements from dependency==version
+             ;; to dependency>=version
+             (substitute* "gdrivefs/resources/requirements.txt"
+               (("==") ">="))
+             #t)))))
+    (native-inputs
+     `(("python2-gipc" ,python2-gipc)
+       ("python2-gevent" ,python2-gevent)
+       ("python2-greenlet" ,python2-greenlet)
+       ("python2-httplib2" ,python2-httplib2)
+       ("python2-uritemplate" ,python2-uritemplate)
+       ("python2-oauth2client" ,python2-oauth2client)
+       ("python2-six" ,python2-six)))
+    (propagated-inputs
+     `(("python2-dateutil" ,python2-dateutil)
+       ("python2-fusepy" ,python2-fusepy)
+       ("python2-google-api-client" ,python2-google-api-client)))
+    (home-page "https://github.com/dsoprea/GDriveFS")
+    (synopsis "Mount Google Drive as a local file system")
+    (description "@code{gdrivefs} provides a FUSE wrapper for Google Drive
+under Python 2.7.")
+    (license license:gpl2)))
-- 
2.7.4

  parent reply	other threads:[~2018-05-23  8:36 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-23  8:35 [bug#31562] [PATCH 1/5] gnu: Add python2-oauth2client Mathieu Othacehe
2018-05-23  8:35 ` [bug#31563] [PATCH 2/5] gnu: Add python-google-api-client Mathieu Othacehe
2018-05-23  8:35 ` [bug#31565] [PATCH 3/5] gnu: Add python-gipc Mathieu Othacehe
2018-05-24 22:33   ` Leo Famulari
2018-05-25  8:39     ` Mathieu Othacehe
2018-05-23  8:35 ` [bug#31564] [PATCH 4/5] gnu: Add python-fusepy Mathieu Othacehe
2018-05-23  8:35 ` Mathieu Othacehe [this message]
2018-05-24 22:33 ` [bug#31562] [PATCH 1/5] gnu: Add python2-oauth2client Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1527064522-20775-5-git-send-email-m.othacehe@gmail.com \
    --to=m.othacehe@gmail.com \
    --cc=31566@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.