summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authordanme <daniel@menke-online.com>2019-09-13 15:29:32 +0200
committerdanme <daniel@menke-online.com>2019-09-13 15:29:32 +0200
commit535117b136a6dd22f4c0326e383fd0bc0b145b25 (patch)
tree37a6d2014c474005fbe7e010a4e779957afd7539 /pkgs/tools/text
parentab0308604b93c3e81a330aa668c33ea9ece0bf5d (diff)
csvkit: fix failing test
downgrading dependency agate-sql
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/csvkit/default.nix13
1 files changed, 12 insertions, 1 deletions
diff --git a/pkgs/tools/text/csvkit/default.nix b/pkgs/tools/text/csvkit/default.nix
index f581e44bcc8a..d2c710d10f8c 100644
--- a/pkgs/tools/text/csvkit/default.nix
+++ b/pkgs/tools/text/csvkit/default.nix
@@ -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; [