From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60289) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jFcIP-0005bV-3L for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jFcIN-0006UR-IQ for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40072) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jFcIN-0006U2-EY for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jFcIN-0001M5-CG for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:03 -0400 Subject: [bug#39777] [PATCH V5 09/14] gnu: Add python-xattr. Resent-Message-ID: From: Tanguy Le Carrour Date: Sat, 21 Mar 2020 12:26:24 +0100 Message-Id: <20200321112629.20988-9-tanguy@bioneland.org> In-Reply-To: <20200321112629.20988-1-tanguy@bioneland.org> References: <20200321112629.20988-1-tanguy@bioneland.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39777@debbugs.gnu.org Cc: Tanguy Le Carrour * 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