emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#33086: closed ([PATCH] New package: python-ilinked


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#33086: closed ([PATCH] New package: python-ilinkedlist)
Date: Sun, 21 Oct 2018 21:51:02 +0000

Your message dated Sun, 21 Oct 2018 23:50:10 +0200
with message-id <address@hidden>
and subject line Re: [bug#33086] [PATCH] New package: python-ilinkedlist
has caused the debbugs.gnu.org bug report #33086,
regarding [PATCH] New package: python-ilinkedlist
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
33086: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33086
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] New package: python-ilinkedlist Date: Thu, 18 Oct 2018 02:24:50 -0400
I've written a Python module. Here is my package definition for it.
Please let me know if I can make any improvements.

---BEGIN---
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8261fefd9..59917feb7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14473,3 +14473,28 @@ extend common interfaces like NumPy, Pandas,
or Python iterators to larger-than-memory or distributed environments.
These parallel collections run on top of the dynamic task schedulers. ")
     (license license:bsd-3)))
+
+(define-public python-ilinkedlist
+  (package
+    (name "python-ilinkedlist")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ilinkedlist" version))
+       (sha256
+        (base32
+         "063c2gm4jkgkv0nsg7mrc8y0w82ms98l4xchmbrvr68cscglhk69"))))
+    (build-system python-build-system)
+    (native-inputs `(("python-pytest" ,python-pytest)))
+    (inputs `(("python" ,python)))
+    (home-page "https://github.com/luther9/ilinkedlist-py";)
+    (synopsis "Immutable linked list library")
+    (description
+     "This is a implementation of immutable linked lists for Python.
It +contains @code{nil} (the empty linked list) and a @code{Pair} class
for nodes. +Since a linked list is treated as immutable, it is
hashable, and its length can +be retrieved in constant time.  Some of
the terminology is inspired by LISP.  It +is possible to create an
improper list by creating a @code{Pair} with a non-list address@hidden")
+    (license license:gpl3+)))
---END---

Regards,
Luther Thompson



--- End Message ---
--- Begin Message --- Subject: Re: [bug#33086] [PATCH] New package: python-ilinkedlist Date: Sun, 21 Oct 2018 23:50:10 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)
Hello Luther,

Luther Thompson <address@hidden> skribis:

> I've written a Python module. Here is my package definition for it.
> Please let me know if I can make any improvements.

It looks good to me!  I’ve applied it after adding a copyright line for
you and a commit log that follows our conventions.

In the future please send the patch as produced by ‘git format-patch’,
preferably as an attachment so that your email client doesn’t wrap
lines.  See
<https://gnu.org/software/guix/manual/en/html_node/Submitting-Patches.html>.

Thank you!

Ludo’.


--- End Message ---

reply via email to

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