about summary refs log tree commit diff
path: root/pkgs/tools/security/sshuttle
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-03-14 09:32:17 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-03-14 09:32:17 +0000
commitca1921eb5bd8edc941be6abc7e971baf3a24fba7 (patch)
tree6d76ec5e6ae5e97e38c04343e8fc61b81d0b0d48 /pkgs/tools/security/sshuttle
parentf161fe06b86508f5ac31b9cce768394efc421db5 (diff)
downloadnixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.tar
nixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.tar.gz
nixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.tar.bz2
nixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.tar.lz
nixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.tar.xz
nixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.tar.zst
nixlib-ca1921eb5bd8edc941be6abc7e971baf3a24fba7.zip
shuttle: disable buggy test on darwin
Diffstat (limited to 'pkgs/tools/security/sshuttle')
-rw-r--r--pkgs/tools/security/sshuttle/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix
index f01a1f00a6d9..d2c194308e19 100644
--- a/pkgs/tools/security/sshuttle/default.nix
+++ b/pkgs/tools/security/sshuttle/default.nix
@@ -29,6 +29,10 @@ python3Packages.buildPythonApplication rec {
   # uses Python 3, so it should be fine.
   doCheck = true;
 
+  checkPhase = ''
+    py.test -k "${stdenv.lib.optionalString stdenv.isDarwin "not test_parse_subnetport_ip6"}"
+  '';
+
   postInstall = let
     mapPath = f: x: stdenv.lib.concatStringsSep ":" (map f x);
   in ''