GNU bug report logs - #57221
[PATCH] gnu: Add python-nanoid.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Mon, 15 Aug 2022 02:07:02 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: 宋文武 <iyzsong <at> envs.net>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#57221: closed ([PATCH] gnu: Add python-nanoid.)
Date: Mon, 15 Aug 2022 05:45:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Mon, 15 Aug 2022 13:43:54 +0800
with message-id <87lerqhxid.fsf <at> envs.net>
and subject line Re: bug#57221: [PATCH] gnu: Add python-nanoid.
has caused the debbugs.gnu.org bug report #57221,
regarding [PATCH] gnu: Add python-nanoid.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
57221: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57221
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: Add python-nanoid.
Date: Sun, 14 Aug 2022 21:05:53 -0500
* gnu/packages/python-xyz.scm (python-nanoid): New variable.
---
 gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 13ab2f2c8b..2122db30c6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30531,6 +30531,39 @@ (define-public python-types-orjson
 etc. to check code that uses @code{orjson}.")
     (license license:asl2.0)))
 
+(define-public python-nanoid
+  ;; There are no tests on PyPi.
+  (let ((commit "061f9a598f310b0e2e91b9ed6ce725a22770da64")
+        (revision "0"))
+  (package
+    (name "python-nanoid")
+    (version "2.0.0")
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://github.com/puyuan/py-nanoid")
+           (commit commit)))
+         (file-name (git-file-name name commit))
+         (sha256
+          (base32 "0y1bcw0h27g8rkqq7cp33ywn0i0lp0q3rjixzkh4191y1dp9yf8s"))))
+    (build-system python-build-system)
+    (native-inputs (list python-pytest))
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda* (#:key tests? inputs outputs #:allow-other-keys)
+             (when tests?
+               (invoke "pytest")))))))
+    (home-page "https://github.com/puyuan/py-nanoid")
+    (synopsis "Unique string ID generator")
+    (description
+"This package provides a tiny, secure, URL-friendly, unique string ID
+generator for Python")
+    (license license:expat))))
+
 (define-public python-misskey
   (package
     (name "python-misskey")
-- 
2.37.2



[Message part 3 (message/rfc822, inline)]
From: 宋文武 <iyzsong <at> envs.net>
To: jgart <jgart <at> dismail.de>
Cc: 57221-done <at> debbugs.gnu.org
Subject: Re: bug#57221: [PATCH] gnu: Add python-nanoid.
Date: Mon, 15 Aug 2022 13:43:54 +0800
jgart <jgart <at> dismail.de> writes:

> * gnu/packages/python-xyz.scm (python-nanoid): New variable.
> ---
>  gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)

I fixed 'description' (indent and ending period) and pushed, thank you!


This bug report was last modified 2 years and 278 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.