Remove outdated local overrides

This commit is contained in:
Daniël de Kok 2025-05-22 14:27:55 +00:00
parent 6c1d9f1377
commit 5aafd37d7b

View File

@ -13,26 +13,26 @@ final: prev: {
( (
python-self: python-super: with python-self; { python-self: python-super: with python-self; {
# Python package override example: # Python package override example:
transformers = python-super.transformers.overrideAttrs ( #transformers = python-super.transformers.overrideAttrs (
_: _: { # _: _: {
src = final.fetchFromGitHub { # src = final.fetchFromGitHub {
owner = "huggingface"; # owner = "huggingface";
repo = "transformers"; # repo = "transformers";
rev = "v4.51.0"; # rev = "v4.51.0";
hash = "sha256-dnVpc6fm1SYGcx7FegpwVVxUY6XRlsxLs5WOxYv11y8="; # hash = "sha256-dnVpc6fm1SYGcx7FegpwVVxUY6XRlsxLs5WOxYv11y8=";
}; # };
} # }
); #);
huggingface-hub = python-super.huggingface-hub.overrideAttrs ( #huggingface-hub = python-super.huggingface-hub.overrideAttrs (
_: _: { # _: _: {
src = final.fetchFromGitHub { # src = final.fetchFromGitHub {
owner = "huggingface"; # owner = "huggingface";
repo = "huggingface_hub"; # repo = "huggingface_hub";
rev = "v0.30.0"; # rev = "v0.30.0";
hash = "sha256-sz+n1uoWrSQPqJFiG/qCT6b4r08kD9MsoPZXbfWNB2o="; # hash = "sha256-sz+n1uoWrSQPqJFiG/qCT6b4r08kD9MsoPZXbfWNB2o=";
}; # };
} # }
); #);
} }
) )
]; ];