guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 3d3bbcae245363de6eecf4495c0708320d2983c7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 29 16:25:03 2025 +0100
gnu: python-charset-normalizer-3: Set to python-charset-normalizer.
* gnu/packages/python-xyz.scm (python-charset-normalizer-3): Set to
python-charset-normalizer.
Change-Id: I15b2aba11e2892f011095703575c76b463c2f576
---
gnu/packages/python-xyz.scm | 30 +-----------------------------
1 file changed, 1 insertion(+), 29 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 396f3ff8a8..fa9f33dc55 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19756,35 +19756,7 @@ taking a new approach. All IANA character set names
for which the Python core
library provides codecs are supported.")
(license license:expat)))
-(define-public python-charset-normalizer-3
- (package
- (inherit python-charset-normalizer)
- (name "python-charset-normalizer")
- (version "3.4.2")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "charset_normalizer" version))
- (sha256
- (base32 "0qqfk84ka3d9hh0yf7n8y0qa0yn08ncdacjjckzix8ybkv5cxbjv"))))
- (build-system pyproject-build-system)
- (arguments
- (substitute-keyword-arguments (package-arguments
- python-charset-normalizer)
- ((#:phases phases
- '%standard-phases)
- #~(modify-phases #$phases
- ;; https://github.com/jawah/charset_normalizer/issues/625
- ;; https://github.com/jawah/charset_normalizer/pull/626
- (add-after 'unpack 'fix-scripts
- (lambda _
- (substitute* "pyproject.toml"
- (("charset_normalizer:cli.cli_detect")
- "charset_normalizer.cli:cli_detect"))))))))
- (native-inputs
- (list python-pytest
- python-setuptools
- python-wheel))))
+(define-public python-charset-normalizer-3 python-charset-normalizer)
(define-public python-docopt
(package