guix-patches
[Top][All Lists]
Advanced

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

[bug#39777] [PATCH V5 09/14] gnu: Add python-xattr.


From: Tanguy Le Carrour
Subject: [bug#39777] [PATCH V5 09/14] gnu: Add python-xattr.
Date: Sat, 21 Mar 2020 12:26:24 +0100

* gnu/packages/python-xyz.scm (python-xattr): New public variable.
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f5a8a21d55..e27fea1957 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18389,3 +18389,26 @@ sequences.")
 
 (define-public python2-fuzzywuzzy
   (package-with-python2 python-fuzzywuzzy))
+
+(define-public python-xattr
+  (package
+    (name "python-xattr")
+    (version "0.9.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "xattr" version))
+       (sha256
+        (base32
+         "0i4xyiqbhjz2g16zbim17zjdbjkw79xsw8k59942vvq4is1cmfxh"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-cffi" ,python-cffi)))
+    (home-page "http://github.com/xattr/xattr";)
+    (synopsis
+     "Python wrapper for extended filesystem attributes")
+    (description "xattr is a Python wrapper for extended filesystem
+attributes.  Extended attributes extend the basic attributes of files
+and directories in the file system.  They are stored as name:data pairs
+associated with file system objects (files, directories, symlinks, etc).")
+    (license license:expat)))
-- 
2.25.2






reply via email to

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