From bb7a01f758720c38d938923733e5b777c8f87e2e Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 4 Jun 2026 10:24:49 -0500 Subject: [PATCH] fix: point directly to pypi, not through simple --- home/hosts/gregory.hellings-mbp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/hosts/gregory.hellings-mbp/default.nix b/home/hosts/gregory.hellings-mbp/default.nix index 4f96a61..df759d9 100644 --- a/home/hosts/gregory.hellings-mbp/default.nix +++ b/home/hosts/gregory.hellings-mbp/default.nix @@ -36,14 +36,14 @@ ".pip/pip.conf".text = '' [global] retries = 1 - index-url = https://pypi.python.org/simple + index-url = https://pypi.python.org/ extra-index-url = - https://pypidev.ivrtechnology.com/simple/ + https://pypidev.ivrtechnology.com/ ''; ".config/uv/uv.toml".text = '' index-strategy = "unsafe-first-match" [[index]] - url = "https://pypidev.ivrtechnology.com/simple/" + url = "https://pypidev.ivrtechnology.com/" name = "pypidev" ignore-error-codes = [403] '';