python312Packages.aiohttp-socks: 0.9.0 -> 0.10.1 (#357664)

This commit is contained in:
Weijia Wang
2025-01-01 21:08:29 +01:00
committed by GitHub
@@ -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;