From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42589) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ihGch-0007nj-V1 for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ihGcg-000881-Hh for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36400) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ihGcg-00087P-EL for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ihGcg-0004X9-BZ for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:02 -0500 Subject: [bug#38652] [PATCH 4/5] gnu: Add python-pox. Resent-Message-ID: From: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= Date: Tue, 17 Dec 2019 18:24:36 +0100 Message-ID: <20191217172437.21217-4-madalinionel.patrascu@mdc-berlin.de> In-Reply-To: <20191217172437.21217-1-madalinionel.patrascu@mdc-berlin.de> References: <20191217172437.21217-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain 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: 38652@debbugs.gnu.org Cc: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= * gnu/packages/python-xyz.scm (python-pox): New variable. --- gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f5b2ff16e7..2287903d0b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16934,3 +16934,27 @@ multiprocessing) computers and clusters. pp module features cross-platform portability and dynamic load balancing.") ;; looks like bsd-3 https://github.com/uqfoundation/ppft/blob/master/LICENSE (license license:bsd-3))) + +(define-public python-pox + (package + (name "python-pox") + (version "0.2.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pox" version)) + (sha256 + (base32 + "0y17ckc2p6i6709s279sjdj4q459mpcc38ymg9zv9y6vl6jf3bq6")))) + (build-system python-build-system) + (home-page "https://pypi.org/project/pox/") + (synopsis "Python utilities for filesystem exploration and automated builds") + (description + "Python-pox provides a collection of utilities for navigating and +manipulating filesystems. This module is designed to facilitate some of the +low level operating system interactions that are useful when exploring a +filesystem on a remote host. Python-pox provides python equivalents of several +unix shell commands such as which and find. These commands allow automated +discovery of what has been installed on an operating system, and where the +essential tools are located.") + (license license:bsd-3))) -- 2.24.1