mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add python-cchardet.
* gnu/packages/freedesktop.scm (python-cchardet): New variable.
This commit is contained in:
parent
9042a30416
commit
141e74a830
1 changed files with 21 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||
;;; Copyright © 2020 Anders Thuné <asse.97@gmail.com>
|
||||
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
|
||||
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1920,6 +1921,26 @@ encoding names are iconv-compatible.")
|
|||
;; combination is GPL 2.0+.
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public python-cchardet
|
||||
(package
|
||||
(name "python-cchardet")
|
||||
(version "2.1.7")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "cchardet" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1bqfz85cd51sw0bvhvdq9ikccxi2ld7g5jpni4jkq1a5clrvca64"))))
|
||||
(build-system python-build-system)
|
||||
(inputs
|
||||
`(("uchardet" ,uchardet)))
|
||||
(home-page "https://github.com/PyYoshi/cChardet")
|
||||
(synopsis "High-performance character encoding detection for Python")
|
||||
(description "cChardet is a character encoding detector, written in
|
||||
Python, that binds to the C library @code{uchardet} to increase performance.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public udiskie
|
||||
(package
|
||||
(name "udiskie")
|
||||
|
|
Loading…
Reference in a new issue