Skip to content

Commit

Permalink
Merge pull request #97580 from zookatron/release-20.09
Browse files Browse the repository at this point in the history
[20.09] csvkit: fix failing test
  • Loading branch information
worldofpeace committed Sep 9, 2020
2 parents fc35e4d + ca58161 commit 9089e5a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/tools/text/csvkit/default.nix
Expand Up @@ -12,7 +12,14 @@ python3.pkgs.buildPythonApplication rec {
propagatedBuildInputs = with python3.pkgs; [
agate
agate-excel
agate-dbf
# dbf test fail with agate-dbf-0.2.2
(agate-dbf.overridePythonAttrs(old: rec {
version = "0.2.1";
src = python3.pkgs.fetchPypi {
inherit (old) pname;
inherit version;
sha256 = "0brprva3vjypb5r9lk6zy10jazp681rxsqxzhz2lr869ir4krj80";
};}))
# sql test fail with agate-sql-0.5.4
(agate-sql.overridePythonAttrs(old: rec {
version = "0.5.3";
Expand Down

0 comments on commit 9089e5a

Please sign in to comment.