From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:38986) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5gUt-0005nJ-0T for guix-patches@gnu.org; Sun, 17 Mar 2019 20:51:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h5gPi-0001Ni-VO for guix-patches@gnu.org; Sun, 17 Mar 2019 20:46:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34331) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h5gPi-0001N2-Jq for guix-patches@gnu.org; Sun, 17 Mar 2019 20:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h5gPi-0000da-GY for guix-patches@gnu.org; Sun, 17 Mar 2019 20:46:02 -0400 Subject: [bug#34899] [PATCH] gnu: Add python-shortuuid. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:54317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5aRw-0005iR-Oj for guix-patches@gnu.org; Sun, 17 Mar 2019 14:23:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h5aD2-0007Hd-LS for guix-patches@gnu.org; Sun, 17 Mar 2019 14:08:33 -0400 Received: from mail-wr1-x434.google.com ([2a00:1450:4864:20::434]:42979) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h5aD2-0007H6-Dc for guix-patches@gnu.org; Sun, 17 Mar 2019 14:08:32 -0400 Received: by mail-wr1-x434.google.com with SMTP id n9so10481052wrr.9 for ; Sun, 17 Mar 2019 11:08:31 -0700 (PDT) From: Sam Date: Sun, 17 Mar 2019 18:08:29 +0000 Message-Id: <20190317180829.13909-1-smbaines8@gmail.com> 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: 34899@debbugs.gnu.org * gnu/packages/python-xyz.scm (python-shortuuid): New variable. --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fa2701bc1c..c3a60058f2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -229,6 +229,28 @@ pidof, tty, taskset, pmap.") planar geometric objects. It is based on the @code{GEOS} library.") (license license:bsd-3))) +(define-public python-shortuuid + (package + (name "python-shortuuid") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "shortuuid" version)) + (sha256 + (base32 + "1f8i4zwj5vmpzbz6b17bljy4399gx5aq7vsyw63sz2qgyjcd73yh")))) + (build-system python-build-system) + (native-inputs + `(("python-pep8" ,python-pep8))) + (home-page "https://github.com/skorokithakis/shortuuid") + (synopsis "Generator library for concise, unambiguous and URL-safe UUIDs") + (description + "@code{shortuuid} is a Python library for generating concise, unambiguous +and URL-safe UUIDs. UUIDs are generated using the built-in Python @code{uuid} +module and then similar looking characters are removed.") + (license license:bsd-3))) + (define-public python-logwrap (package (name "python-logwrap") -- 2.21.0