about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-09-13 23:50:31 +0200
committerGitHub <noreply@github.com>2019-09-13 23:50:31 +0200
commitc8cb4c743e90c4a5f0a9658f7d2a57eb61abbeaa (patch)
tree2e0c442303633e6738b9902f95e2f4efd8c51025 /pkgs/tools
parentef378f7ffa9c3e7a9a0550c68334dad4c606ac85 (diff)
parent535117b136a6dd22f4c0326e383fd0bc0b145b25 (diff)
Merge pull request #68664 from danme/fix-csvkit
csvkit: fix failing test
Diffstat (limited to 'pkgs/tools')
-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 f581e44bcc8ae..d2c710d10f8c0 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; [