diff options
Diffstat (limited to 'pkgs/development/python-modules/socksio/default.nix')
-rw-r--r-- | pkgs/development/python-modules/socksio/default.nix | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/socksio/default.nix b/pkgs/development/python-modules/socksio/default.nix index fb767db631d8..decae7430fa2 100644 --- a/pkgs/development/python-modules/socksio/default.nix +++ b/pkgs/development/python-modules/socksio/default.nix @@ -1,10 +1,10 @@ -{ lib -, buildPythonPackage -, fetchpatch -, fetchPypi -, pythonAtLeast -, flit-core -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchpatch, + fetchPypi, + flit-core, + pytestCheckHook, }: let @@ -29,18 +29,14 @@ buildPythonPackage { }) ]; - nativeBuildInputs = [ - flit-core - ]; + nativeBuildInputs = [ flit-core ]; # remove coverage configuration preCheck = '' rm pytest.ini ''; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "Sans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5"; |