diff options
Diffstat (limited to 'pkgs/development/python-modules/pytap2/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pytap2/default.nix | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pytap2/default.nix b/pkgs/development/python-modules/pytap2/default.nix index d78a7b364779..1e080f0bbad3 100644 --- a/pkgs/development/python-modules/pytap2/default.nix +++ b/pkgs/development/python-modules/pytap2/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, nettools -, fetchFromGitHub -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + nettools, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -20,17 +21,11 @@ buildPythonPackage rec { hash = "sha256-GN8yFnS7HVgIP73/nVtYnwwhCBI9doGHLGSOaFiWIdw="; }; - propagatedBuildInputs = [ - nettools - ]; + propagatedBuildInputs = [ nettools ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "pytap2" - ]; + pythonImportsCheck = [ "pytap2" ]; meta = with lib; { description = "Object-oriented wrapper around the Linux Tun/Tap device"; |