1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

Merge pull request #51937 from ivan/add-cchardet

pythonPackages.cchardet: init at 2.1.4
This commit is contained in:
Jörg Thalheim 2018-12-13 13:58:08 +00:00 committed by GitHub
commit 3d4cb55b71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -1178,6 +1178,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 { };