lol

python313Packages.swisshydrodata: fix build

fixes https://hydra.nixos.org/build/290703010

+7 -1
+7 -1
pkgs/development/python-modules/swisshydrodata/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 pytestCheckHook, 6 + pytest-cov-stub, 6 7 pythonOlder, 7 8 requests-mock, 8 9 requests, 10 + aiohttp, 9 11 setuptools, 10 12 }: 11 13 ··· 25 27 26 28 build-system = [ setuptools ]; 27 29 28 - dependencies = [ requests ]; 30 + dependencies = [ 31 + requests 32 + aiohttp 33 + ]; 29 34 30 35 nativeCheckInputs = [ 31 36 pytestCheckHook 37 + pytest-cov-stub 32 38 requests-mock 33 39 ]; 34 40