guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e61954267117541c6f37596388599dad89a1565e
Author: wrobell <[email protected]>
AuthorDate: Wed Jun 18 19:54:55 2025 +0100
gnu: Add python-essentials.
* gnu/packages/python-xyz.scm (python-essentials): New variable.
Change-Id: Ief6d00aac122d33269f9237673770bfd7f98fbb8
Modified-by: Sharlatan Hellseher <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 12af733d7f..50255df0fb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20372,6 +20372,33 @@ package and greatly reduce the number of imports for
your users. It is a small
pure Python module that works on virtually all Python versions.")
(license license:expat)))
+(define-public python-essentials
+ (package
+ (name "python-essentials")
+ (version "1.1.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Neoteroi/essentials")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bh8yi79gn9fg26mp58nm9xhnxcfab7rhc076av4qg00mg5p9rn0"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-hatchling
+ python-pydantic
+ python-pytest-asyncio))
+ (home-page "https://github.com/Neoteroi/essentials/wiki")
+ (synopsis
+ "Utility functions, exceptions, and classes for Python applications")
+ (description
+ "Essentials is a collection of functions, exceptions, and classes for
Python
+applications. Examples of utilities are exceptions for common scenarios,
+friendly JSON encoder, decorators for retries and logging.")
+ (license license:expat)))
+
(define-public python-execnet
(package
(name "python-execnet")