python313Packages.swisshydrodata: fix build

fixes https://hydra.nixos.org/build/290703010
This commit is contained in:
Peder Bergebakken Sundt
2025-03-03 02:36:45 +01:00
parent 515eb74927
commit cf8f342cf9
@@ -3,9 +3,11 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pytest-cov-stub,
pythonOlder,
requests-mock,
requests,
aiohttp,
setuptools,
}:
@@ -25,10 +27,14 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [ requests ];
dependencies = [
requests
aiohttp
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
requests-mock
];