guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add python-shortuuid.


From: guix-commits
Subject: 01/01: gnu: Add python-shortuuid.
Date: Mon, 18 Mar 2019 12:59:32 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit a91f4eba2c923405ccdce5bdb390b12a40a856c2
Author: Sam <address@hidden>
Date:   Sun Mar 17 18:08:29 2019 +0000

    gnu: Add python-shortuuid.
    
    * gnu/packages/python-xyz.scm (python-shortuuid): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 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 f9e87fb..f9617b1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -58,6 +58,7 @@
 ;;; Copyright © 2018 Luther Thompson <address@hidden>
 ;;; Copyright © 2018 Vagrant Cascadian <address@hidden>
 ;;; Copyright © 2019 Brett Gilio <address@hidden>
+;;; Copyright © 2019 Sam <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -230,6 +231,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")



reply via email to

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