From cf8f342cf9c0fe5b022056d0240d4faf26507a2f Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Mon, 3 Mar 2025 02:36:45 +0100 Subject: [PATCH] python313Packages.swisshydrodata: fix build fixes https://hydra.nixos.org/build/290703010 --- .../development/python-modules/swisshydrodata/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/swisshydrodata/default.nix b/pkgs/development/python-modules/swisshydrodata/default.nix index c805abb98a98..4d7d159401bd 100644 --- a/pkgs/development/python-modules/swisshydrodata/default.nix +++ b/pkgs/development/python-modules/swisshydrodata/default.nix @@ -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 ];