From 01557ee8b9f3382ea2d4a354c4c04354e4a17d22 Mon Sep 17 00:00:00 2001 From: Aristid Breitkreuz Date: Sun, 9 Jul 2017 12:17:02 +0200 Subject: [PATCH] sshuttle: clean up expression a little bit --- pkgs/tools/security/sshuttle/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index 65d9165a26bd..2d663175ec9d 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -12,13 +12,12 @@ python3Packages.buildPythonApplication rec { patches = [ ./sudo.patch ]; - propagatedBuildInputs = with python3Packages; [ mock pytest ]; nativeBuildInputs = [ makeWrapper pandoc python3Packages.setuptools_scm ]; buildInputs = [ coreutils openssh ] ++ stdenv.lib.optionals stdenv.isLinux [ iptables nettools procps ]; - checkInputs = with python3Packages; [ pytest pytestrunner ]; + checkInputs = with python3Packages; [ mock pytest pytestrunner ]; # Tests only run with Python 3. Server-side Python 2 still works if client # uses Python 3, so it should be fine.