Martin Weinelt ae4a1a485a
treewide: add explicit format attribute for Python packages
If a Python package does not come with either `format` or `pyproject` we
consider it a setuptools build, that calls `setup.py` directly, which is
deprecated.

This change, as a first step, migrates a large chunk of these packages to
set setuptools as their explicit format

This is so we can unify the problem space for the next step of the
migration.
2025-07-02 05:56:47 +02:00

24 lines
538 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "socksipy-branch";
version = "1.01";
format = "setuptools";
src = fetchPypi {
pname = "SocksiPy-branch";
inherit version;
sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p";
};
meta = with lib; {
homepage = "http://code.google.com/p/socksipy-branch/";
description = "This Python module allows you to create TCP connections through a SOCKS proxy without any special effort";
license = licenses.bsd3;
};
}