From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46853) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irBU2-0001Kn-4b for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irBU0-0008MO-U6 for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54587) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1irBU0-0008MC-Qj for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1irBU0-0005QZ-QU for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:04 -0500 Subject: [bug#39128] [PATCH 08/12] gnu: Add python-pathtools. Resent-Message-ID: From: Julien Lepiller Date: Tue, 14 Jan 2020 02:57:35 +0100 Message-Id: <20200114015739.14432-8-julien@lepiller.eu> In-Reply-To: <20200114015739.14432-1-julien@lepiller.eu> References: <20200114025253.3a99b3c7@tachikoma.lepiller.eu> <20200114015739.14432-1-julien@lepiller.eu> 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: 39128@debbugs.gnu.org * gnu/packages/python-xyz.scm (python-pathtools): New variable. --- gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8bcbf855b1..56d98333ea 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17143,3 +17143,21 @@ file to ensure it completely and accurately describes your project.") (description "Android Strings Lib provides support for android's strings.xml files. These files are used to translate strings in android apps.") (license license:expat))) + +(define-public python-pathtools + (package + (name "python-pathtools") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pathtools" version)) + (sha256 + (base32 + "1h7iam33vwxk8bvslfj4qlsdprdnwf8bvzhqh3jq5frr391cadbw")))) + (build-system python-build-system) + (home-page "https://github.com/gorakhargosh/pathtools") + (synopsis "File system general utilities") + (description "This package provides pattern matching and various utilities +for file systems paths.") + (license license:expat))) -- 2.24.0