Files
nixpkgs/pkgs/development/python-modules/aiohttp-socks/default.nix
T
Martin Weinelt 8ea6bde88d treewide: prune pythonOlder 3.10/3.11
This is a post 3.10 removal cleanup.
2026-02-15 04:33:54 +01:00

41 lines
790 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
python-socks,
setuptools,
}:
buildPythonPackage rec {
pname = "aiohttp-socks";
version = "0.11.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "aiohttp_socks";
hash = "sha256-Cv5RY4Unx5B35L1uVwUsh8SCQjPW4guwYcU3ZkIbEPA=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
python-socks
];
# Checks needs internet access
doCheck = false;
pythonImportsCheck = [ "aiohttp_socks" ];
meta = {
description = "SOCKS proxy connector for aiohttp";
homepage = "https://github.com/romis2012/aiohttp-socks";
changelog = "https://github.com/romis2012/aiohttp-socks/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}