Merge pull request #68664 from danme/fix-csvkit

csvkit: fix failing test
This commit is contained in:
Robin Gloster 2019-09-13 23:50:31 +02:00 committed by GitHub
commit c8cb4c743e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,18 @@ python3.pkgs.buildPythonApplication rec {
};
propagatedBuildInputs = with python3.pkgs; [
agate agate-excel agate-dbf agate-sql six
agate
agate-excel
agate-dbf
# sql test fail with agate-sql-0.5.4
(agate-sql.overridePythonAttrs(old: rec {
version = "0.5.3";
src = python3.pkgs.fetchPypi {
inherit (old) pname;
inherit version;
sha256 = "1d6rbahmdix7xi7ma2v86fpk5yi32q5dba5vama35w5mmn2pnyw7";
};}))
six
];
checkInputs = with python3.pkgs; [