grab-site: Don't use override on sqlalchemy fetcher

It is prone to errors, when we switch around the fetcher used in the
original derivation.
This commit is contained in:
Martin Weinelt 2023-04-08 01:41:43 +02:00
parent 5ebc272859
commit e9300b3a3c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -5,7 +5,8 @@ let
packageOverrides = self: super: {
sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
version = "1.3.24";
src = oldAttrs.src.override {
src = super.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
hash = "sha256-67t3fL+TEjWbiXv4G6ANrg9ctp+6KhgmXcwYpvXvdRk=";
};