[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: Add python-isbnlib.
From: |
guix-commits |
Subject: |
07/07: gnu: Add python-isbnlib. |
Date: |
Tue, 21 Jul 2020 12:43:15 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 0a93e8ce328c2dc43eaeddd1033ef67d456bc4df
Author: Tanguy Le Carrour <tanguy@bioneland.org>
AuthorDate: Thu Jul 16 16:01:04 2020 +0200
gnu: Add python-isbnlib.
* gnu/packages/python-xyz.scm (python-isbnlib): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5969384..07a52a0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14455,6 +14455,27 @@ builds partial trees by inspecting living objects.")
,@(alist-delete "python-typed-ast"
(package-propagated-inputs base)))))))
+(define-public python-isbnlib
+ (package
+ (name "python-isbnlib")
+ (version "3.10.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "isbnlib" version))
+ (sha256
+ (base32
+ "07qhykv0x60d5rsx5pj6s4q15ri4znczscll3xmpf6gyclac1592"))))
+ (build-system python-build-system)
+ (arguments '(#:tests? #f)) ; No test
+ (home-page "https://github.com/xlcnd/isbnlib")
+ (synopsis "Python library to work with ISBN strings")
+ (description "@code{python-isbnlib} is a (pure) python library that
provides
+several useful methods and functions to validate, clean, transform, hyphenate
and
+get metadata for ISBN strings. Its origin was as the core of isbntools. This
short
+version, is suitable to be include as a dependency in other projects.")
+ (license license:lgpl3+)))
+
(define-public python-isort
(package
(name "python-isort")
- branch master updated (2313be9 -> 0a93e8c), guix-commits, 2020/07/21
- 01/07: doc: Mention the 'savannah' updater., guix-commits, 2020/07/21
- 03/07: lint: source: Always return a list., guix-commits, 2020/07/21
- 02/07: upstream: 'download-tarball' gracefully handles missing signatures., guix-commits, 2020/07/21
- 04/07: git-authenticate: Show fingerprint in missing-key error message., guix-commits, 2020/07/21
- 05/07: gnu: g-golf: Update to git revision 804., guix-commits, 2020/07/21
- 06/07: gnu: Add python-mamba., guix-commits, 2020/07/21
- 07/07: gnu: Add python-isbnlib.,
guix-commits <=