No need for python-chardet in guix-env.scm
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 25 Feb 2016 23:41:03 +0000 (15:41 -0800)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 25 Feb 2016 23:41:03 +0000 (15:41 -0800)
That was *already* upstream in guix!

guix-env.scm

index ac497351bd796e77a50a39130a715650ea0ace54..ac9e67fca1f55899b32f3e0f38f86932fe005c3e 100644 (file)
        ("python-mako" ,python-mako)
        ("python-editor" ,python-editor)))))
 
-(define python-chardet
-  (package
-    (name "python-chardet")
-    (version "2.3.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "chardet" version))
-       (sha256
-        (base32
-         "1ak87ikcw34fivcgiz2xvi938dmclh078az65l9x3rmgljrkhgp5"))))
-    (build-system python-build-system)
-    (inputs
-     `(("python-setuptools" ,python-setuptools)))
-    (home-page "https://github.com/chardet/chardet")
-    (synopsis
-     "Universal encoding detector for Python 2 and 3")
-    (description
-     "Character encoding auto-detection in Python.  Effectively determines what
-character set to use for input with a high degree of accuracy.")
-    (license lgpl2.1+)))
-
 ;; =================================================================
 
 (define mediagoblin