nix: manually update requests

This commit is contained in:
shadeyg56 2025-06-11 20:50:53 -05:00
parent 75f1b147bc
commit f8b5b5d458

View File

@ -17,6 +17,15 @@ let
patches = []; patches = [];
}); });
requests = python3Packages.requests.overrideAttrs (oldAttrs: rec {
version = "2.32.4";
src = fetchPypi {
pname = "requests";
inherit version;
hash = "sha256-J9AxZoLIopg00yZIIAJLYqNpQgg9Usry8UwFkTNtNCI=";
};
});
in in
python3Packages.buildPythonPackage { python3Packages.buildPythonPackage {
# use pyproject.toml instead of setup.py # use pyproject.toml instead of setup.py