[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: Add python-pypytools.
From: |
guix-commits |
Subject: |
05/07: gnu: Add python-pypytools. |
Date: |
Tue, 19 Mar 2024 05:48:09 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit 044d3f4bef1e36333e5cf9be7d70544fd6501482
Author: dan <i@dan.games>
AuthorDate: Fri Feb 3 00:58:14 2023 +0800
gnu: Add python-pypytools.
* gnu/packages/python-xyz.scm (python-pypytools): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
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 0e458fdadc..c4a5375839 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11433,6 +11433,27 @@ removal, line continuation, indentation, comment
processing, identifier
processing, values parsing, case insensitive comparison, and more.")
(license license:expat)))
+(define-public python-pypytools
+ (package
+ (name "python-pypytools")
+ (version "0.6.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pypytools" version))
+ (sha256
+ (base32 "0ag5xyzagprji0m2pkqsfy8539s003mn41pl6plbmh6iwi9w0h51"))))
+ (build-system python-build-system)
+ (arguments (list #:tests? #f)) ; no tests
+ (propagated-inputs (list python-py))
+ (home-page "https://github.com/antocuni/pypytools/")
+ (synopsis
+ "Tools to use PyPy-specific features, with CPython fallbacks")
+ (description
+ "This package provides a collection of useful tools to use PyPy-specific
+features, with CPython fallbacks.")
+ (license license:x11)))
+
(define-public python-simplegeneric
(package
(name "python-simplegeneric")
- branch master updated (f12172612d -> 1db82acdfc), guix-commits, 2024/03/19
- 01/07: gnu: beancount: Adjust package style., guix-commits, 2024/03/19
- 04/07: gnu: Add python-markdown2., guix-commits, 2024/03/19
- 02/07: gnu: beancount: Enable sanity check., guix-commits, 2024/03/19
- 03/07: gnu: beancount: Enable tests., guix-commits, 2024/03/19
- 06/07: gnu: Add python-cheroot., guix-commits, 2024/03/19
- 07/07: gnu: Add fava., guix-commits, 2024/03/19
- 05/07: gnu: Add python-pypytools.,
guix-commits <=