Skip to content

Commit 9afb750

Browse files
authored
python313Packages.swisshydrodata: fix build (#386546)
2 parents f8e4e5a + cf8f342 commit 9afb750

File tree

1 file changed

+7
-1
lines changed
  • pkgs/development/python-modules/swisshydrodata

1 file changed

+7
-1
lines changed

pkgs/development/python-modules/swisshydrodata/default.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
buildPythonPackage,
44
fetchFromGitHub,
55
pytestCheckHook,
6+
pytest-cov-stub,
67
pythonOlder,
78
requests-mock,
89
requests,
10+
aiohttp,
911
setuptools,
1012
}:
1113

@@ -25,10 +27,14 @@ buildPythonPackage rec {
2527

2628
build-system = [ setuptools ];
2729

28-
dependencies = [ requests ];
30+
dependencies = [
31+
requests
32+
aiohttp
33+
];
2934

3035
nativeCheckInputs = [
3136
pytestCheckHook
37+
pytest-cov-stub
3238
requests-mock
3339
];
3440

0 commit comments

Comments
 (0)