tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.dataset: use sqlalchemy_1_4
linsui
1 year ago
3ef0b7d5
67c5e50a
+5
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
dataset
default.nix
+5
-6
pkgs/development/python-modules/dataset/default.nix
···
5
5
buildPythonPackage,
6
6
fetchPypi,
7
7
pythonOlder,
8
8
-
sqlalchemy,
8
8
+
sqlalchemy_1_4,
9
9
}:
10
10
11
11
buildPythonPackage rec {
···
21
21
};
22
22
23
23
propagatedBuildInputs = [
24
24
-
alembic
24
24
+
(alembic.override { sqlalchemy = sqlalchemy_1_4; })
25
25
banal
26
26
-
sqlalchemy
26
26
+
# SQLAlchemy >= 2.0.0 is unsupported
27
27
+
# https://github.com/pudo/dataset/issues/411
28
28
+
sqlalchemy_1_4
27
29
];
28
30
29
31
# checks attempt to import nonexistent module 'test.test' and fail
···
36
38
homepage = "https://dataset.readthedocs.io";
37
39
license = licenses.mit;
38
40
maintainers = with maintainers; [ xfnw ];
39
39
-
# SQLAlchemy >= 2.0.0 is unsupported
40
40
-
# https://github.com/pudo/dataset/issues/411
41
41
-
broken = true;
42
41
};
43
42
}