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;