02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
25 lines
457 B
Nix
25 lines
457 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysocks";
|
|
version = "1.7.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "PySocks";
|
|
inherit version;
|
|
sha256 = "184sg65mbmih6ljblfsxcmq5js5l7dj3gpn618w9q5dy3rbh921z";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "SOCKS module for Python";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
|
|
}
|