summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/csvkit
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-01-03 03:04:24 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-01-03 03:13:26 +0100
commitba3412d88a7df9c19088040d82ceaf01d84ff1bb (patch)
tree78f0820ba38a3a8e9afb362457a28b741b360a3b /pkgs/tools/text/csvkit
parent1697051b339f21bc404ba25794a2b20fdf2f9301 (diff)
treewide: use sqlalchemy_1_4 instead of individual overrides
As long as sqlalchemy 1.4 is still maintained we should rather maintain one derivation well, instead of many overrides barely.
Diffstat (limited to 'pkgs/tools/text/csvkit')
-rw-r--r--pkgs/tools/text/csvkit/default.nix13
1 files changed, 1 insertions, 12 deletions
diff --git a/pkgs/tools/text/csvkit/default.nix b/pkgs/tools/text/csvkit/default.nix
index cfebb5674327..d559f1204915 100644
--- a/pkgs/tools/text/csvkit/default.nix
+++ b/pkgs/tools/text/csvkit/default.nix
@@ -6,18 +6,7 @@
let
python = python3.override {
packageOverrides = self: super: {
- sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
- version = "1.4.46";
- src = fetchPypi {
- pname = "SQLAlchemy";
- inherit version;
- hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
- };
- disabledTestPaths = [
- "test/aaa_profiling"
- "test/ext/mypy"
- ];
- });
+ sqlalchemy = super.sqlalchemy_1_4;
};
};
in