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