2019-12-26 01:20:00 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pythonOlder, aiohttp, attrs }:
|
2019-01-21 03:42:36 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp-socks";
|
2020-05-06 07:19:29 -07:00
|
|
|
version = "0.3.9";
|
2019-01-21 03:42:36 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "aiohttp_socks";
|
2020-05-06 07:19:29 -07:00
|
|
|
sha256 = "1mn2ng66951mri49f99zh3660j83kvqhr6dpx90s9fkjwk83hmjy";
|
2019-01-21 03:42:36 -08:00
|
|
|
};
|
|
|
|
|
2019-12-26 01:20:00 -08:00
|
|
|
propagatedBuildInputs = [ aiohttp attrs ];
|
2019-01-21 03:42:36 -08:00
|
|
|
|
|
|
|
# Checks needs internet access
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.5.3";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "SOCKS proxy connector for aiohttp";
|
|
|
|
license = lib.licenses.asl20;
|
2020-03-24 18:06:18 -07:00
|
|
|
homepage = "https://github.com/romis2012/aiohttp-socks";
|
2019-01-21 03:42:36 -08:00
|
|
|
};
|
|
|
|
}
|