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
buildPythonPackage,
6
fetchPypi,
7
pythonOlder,
8
-
sqlalchemy,
9
}:
10
11
buildPythonPackage rec {
···
21
};
22
23
propagatedBuildInputs = [
24
-
alembic
25
banal
26
-
sqlalchemy
0
0
27
];
28
29
# checks attempt to import nonexistent module 'test.test' and fail
···
36
homepage = "https://dataset.readthedocs.io";
37
license = licenses.mit;
38
maintainers = with maintainers; [ xfnw ];
39
-
# SQLAlchemy >= 2.0.0 is unsupported
40
-
# https://github.com/pudo/dataset/issues/411
41
-
broken = true;
42
};
43
}
···
5
buildPythonPackage,
6
fetchPypi,
7
pythonOlder,
8
+
sqlalchemy_1_4,
9
}:
10
11
buildPythonPackage rec {
···
21
};
22
23
propagatedBuildInputs = [
24
+
(alembic.override { sqlalchemy = sqlalchemy_1_4; })
25
banal
26
+
# SQLAlchemy >= 2.0.0 is unsupported
27
+
# https://github.com/pudo/dataset/issues/411
28
+
sqlalchemy_1_4
29
];
30
31
# checks attempt to import nonexistent module 'test.test' and fail
···
38
homepage = "https://dataset.readthedocs.io";
39
license = licenses.mit;
40
maintainers = with maintainers; [ xfnw ];
0
0
0
41
};
42
}