mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
python3Packages.pyexcel: add chardet dependency
This commit is contained in:
parent
eeabc427b0
commit
585947fc19
|
@ -2,10 +2,10 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, chardet
|
||||
, lml
|
||||
, pyexcel-io
|
||||
, texttable
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -20,23 +20,20 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
chardet
|
||||
lml
|
||||
pyexcel-io
|
||||
texttable
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
nose
|
||||
pythonImportsCheck = [
|
||||
"pyexcel"
|
||||
];
|
||||
|
||||
# Tests depend on pyexcel-xls & co. causing circular dependency.
|
||||
# https://github.com/pyexcel/pyexcel/blob/dev/tests/requirements.txt
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyexcel" ];
|
||||
|
||||
checkPhase = "nosetests";
|
||||
|
||||
meta = {
|
||||
description = "Single API for reading, manipulating and writing data in csv, ods, xls, xlsx and xlsm files";
|
||||
homepage = "http://docs.pyexcel.org/";
|
||||
|
|
Loading…
Reference in a new issue