core/pkgs/build-support/fetchpypilegacy/tests.nix

11 lines
339 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{ testers, fetchPypiLegacy, ... }:
{
2024-05-02 00:46:19 +00:00
# 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=";
};
}