about summary refs log tree commit diff
path: root/pkgs/build-support/fetchpypilegacy/tests.nix
blob: b16325b96b7ecd65bcaddfca85f28bc614ea91f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ testers, fetchPypiLegacy, ... }: {
  # Tests that we can send custom headers with spaces in them
  fetchSimple = testers.invalidateFetcherByDrvHash fetchPypiLegacy {
    pname = "requests";
    file = "requests-2.31.0.tar.gz";
    url = "https://pypi.org/simple";
    hash = "sha256-lCxadY+Y15Dq7Ropy27vx/+w0c968Fw9J5Flbb1q0eE=";
  };
}