forked from mirrors/nixpkgs
csvkit: fix failing test
downgrading dependency agate-sql
This commit is contained in:
parent
ab0308604b
commit
535117b136
|
@ -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; [
|
||||
|
|
Loading…
Reference in a new issue