mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #68664 from danme/fix-csvkit
csvkit: fix failing test
This commit is contained in:
commit
c8cb4c743e
1 changed files with 12 additions and 1 deletions
|
@ -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