tests.git-deps-pinned: Regenerate poetry2nix overlay

This commit is contained in:
adisbladis 2021-08-11 18:10:29 -05:00
parent 7bccfb6952
commit 0039be3910
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,7 +1,7 @@
{ pkgs }:
self: super: {
alembic = super.alembic.overrideAttrs (
alembic = super.alembic.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/sqlalchemy/alembic.git";
@ -11,4 +11,24 @@ self: super: {
}
);
colorama = super.colorama.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/tartley/colorama.git";
rev = "4321bbfda9aa190acdad05eb901d3b59439f0ec9";
sha256 = "1z88yl4r4g6yv29rw0q7zwylgx9zss360n3s9v07macvv50cb452";
};
}
);
s3transfer = super.s3transfer.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/boto/s3transfer.git";
rev = "b2b6c44cb283e134f6bf9fecad7ff5ee28df793d";
sha256 = "1dzjzfxp9rkrh1s6ic22kwmr00hqrgz0da330vydlfpmcqgyp1fy";
};
}
);
}