Merge pull request #76361 from r-ryantm/auto-update/python3.7-aiohttp-socks

python37Packages.aiohttp-socks: 0.2.2 -> 0.3.3
This commit is contained in:
Mario Rodas 2019-12-26 10:03:58 -05:00 committed by GitHub
commit 91b1e4e777
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,16 @@
{ lib, fetchPypi, buildPythonPackage, pythonOlder, aiohttp }:
{ lib, fetchPypi, buildPythonPackage, pythonOlder, aiohttp, attrs }:
buildPythonPackage rec {
pname = "aiohttp-socks";
version = "0.2.2";
version = "0.3.3";
src = fetchPypi {
inherit version;
pname = "aiohttp_socks";
sha256 = "0473702jk66xrgpm28wbdgpnak4v0dh2qmdjw7ky7hf3lwwqkggf";
sha256 = "21974ce5d782c426ddbf7bdfc5e602a38783b1ee839a4a0ed0990240e2e123b5";
};
propagatedBuildInputs = [ aiohttp ];
propagatedBuildInputs = [ aiohttp attrs ];
# Checks needs internet access
doCheck = false;