From 116cb26e3cce7ebce200a0caca8b9094acf7bcff Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 30 Dec 2024 15:43:34 +0000 Subject: [PATCH] python312Packages.aiohttp-socks: 0.9.0 -> 0.10.1 --- pkgs/development/python-modules/aiohttp-socks/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiohttp-socks/default.nix b/pkgs/development/python-modules/aiohttp-socks/default.nix index a742c77d15045..0b2539fa9b280 100644 --- a/pkgs/development/python-modules/aiohttp-socks/default.nix +++ b/pkgs/development/python-modules/aiohttp-socks/default.nix @@ -1,7 +1,6 @@ { lib, aiohttp, - attrs, buildPythonPackage, fetchPypi, python-socks, @@ -11,7 +10,7 @@ buildPythonPackage rec { pname = "aiohttp-socks"; - version = "0.9.0"; + version = "0.10.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,14 +18,13 @@ buildPythonPackage rec { src = fetchPypi { inherit version; pname = "aiohttp_socks"; - hash = "sha256-IhWaGvAmsinP5eoAfgZbs/5WOFqVGoJiOm9FiKZ1gAM="; + hash = "sha256-SfLh+AUfKIVxm+sbd+MStaJ8Pktg8LBFo4jxlNmV4Gg="; }; build-system = [ setuptools ]; dependencies = [ aiohttp - attrs python-socks ] ++ python-socks.optional-dependencies.asyncio;