mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 04:47:27 +00:00
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:
parent
5ebc272859
commit
e9300b3a3c
@ -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=";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user