guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: gnu: Add python-fusepy.


From: Mathieu Othacehe
Subject: 04/05: gnu: Add python-fusepy.
Date: Fri, 25 May 2018 04:38:08 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit a037a59f83bbc7fabca9b4d6ccaa1e1657be3009
Author: Mathieu Othacehe <address@hidden>
Date:   Wed May 23 10:10:14 2018 +0200

    gnu: Add python-fusepy.
    
    * gnu/packages/python.scm (python-fusepy): New variable,
    (python2-fusepy): new variable.
---
 gnu/packages/python.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 50bfc8d..27deaeb 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13366,3 +13366,36 @@ gevent-powered application.")
 
 (define-public python2-gipc
   (package-with-python2 python-gipc))
+
+(define-public python-fusepy
+  (package
+    (name "python-fusepy")
+    (version "2.0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "fusepy" version))
+       (sha256
+        (base32
+         "0v5grm4zyf58hsplwsxfbihddw95lz9w8cy3rpzbyha287swgx8h"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'build 'set-library-file-name
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let ((fuse (assoc-ref inputs "fuse")))
+               (substitute* "fuse.py"
+                 (("find_library\\('fuse'\\)")
+                  (string-append "'" fuse "/lib/libfuse.so'")))
+               #t))))))
+    (propagated-inputs
+     `(("fuse" ,fuse)))
+    (home-page "https://github.com/fusepy/fusepy";)
+    (synopsis "Simple ctypes bindings for FUSE")
+    (description "Python module that provides a simple interface to FUSE and
+MacFUSE.  The binding is created using the standard @code{ctypes} library.")
+    (license license:isc)))
+
+(define-public python2-fusepy
+  (package-with-python2 python-fusepy))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]