pythonPackages.cchardet: init at 2.1.4

This commit is contained in:
Ivan Kozik 2018-12-13 11:11:58 +00:00
parent da28c89797
commit 76dc4b56f7
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, nose
}:
buildPythonPackage rec {
pname = "cchardet";
version = "2.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "1h3wajwwgqpyb1q44lzr8djbcwr4y8cphph7kyscz90d83h4b5yc";
};
checkInputs = [ nose ];
checkPhase = ''
${python.interpreter} setup.py nosetests
'';
meta = {
description = "High-speed universal character encoding detector";
homepage = https://github.com/PyYoshi/cChardet;
license = lib.licenses.mpl11;
maintainers = with lib.maintainers; [ ivan ];
};
}

View File

@ -1176,6 +1176,8 @@ in {
cccolutils = callPackage ../development/python-modules/cccolutils {};
cchardet = callPackage ../development/python-modules/cchardet { };
CDDB = callPackage ../development/python-modules/cddb { };
cntk = callPackage ../development/python-modules/cntk { };