python312Packages.meteoswiss-async: relax aiohttp and asyncstdlib

This commit is contained in:
Fabian Affolter
2024-11-02 23:39:30 +01:00
committed by Weijia Wang
parent ed534e09d0
commit 97c5b68808
2 changed files with 7 additions and 4 deletions
+3 -3
View File
@@ -8,16 +8,16 @@
buildGoModule rec {
pname = "poutine";
version = "0.13.0";
version = "0.15.2";
src = fetchFromGitHub {
owner = "boostsecurityio";
repo = "poutine";
rev = "refs/tags/v${version}";
hash = "sha256-9vbK2tc57e/YNfhSVbCMxnzOmmahr9T3x5Tt7GQjVnc=";
hash = "sha256-YBoGsexYT2/lAWEajMVa/xNRBv1R1i0hB6pTAlk43E0=";
};
vendorHash = "sha256-HYuyGSatUOch73IKc7/9imhwz0Oz6Mrccs2HKVQtaVE=";
vendorHash = "sha256-CZLzIGu6jj4JXmKJaWmyeRvcRNjBYecblW47kcsg5Nw=";
ldflags = [
"-s"
@@ -26,7 +26,10 @@ buildPythonPackage rec {
hash = "sha256-xFvfyLZvBfnbzShKN+94piNUVjV1cfi4jWpc/Xw6XG4=";
};
pythonRelaxDeps = [ "aiohttp" ];
pythonRelaxDeps = [
"aiohttp"
"asyncstdlib"
];
build-system = [ setuptools ];