aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/snitun
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-05-20 01:39:43 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-05-20 01:39:43 +0200
commit1849de11ec1e32e9eebb83f24d5339bea88b7ed7 (patch)
tree0aaf3cead09c2d55c67c6f6a86ad20af399797d8 /nixpkgs/pkgs/development/python-modules/snitun
parent304c06d7a7ea3f5c84031d325ece8d38b8c1d829 (diff)
parent0f5ce2fac0c726036ca69a5524c59a49e2973dd4 (diff)
Merge commit '0f5ce2fac0c726036ca69a5524c59a49e2973dd4'
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/snitun')
-rw-r--r--nixpkgs/pkgs/development/python-modules/snitun/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/snitun/default.nix b/nixpkgs/pkgs/development/python-modules/snitun/default.nix
index 8212379e3d4..901987fbff6 100644
--- a/nixpkgs/pkgs/development/python-modules/snitun/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/snitun/default.nix
@@ -1,4 +1,6 @@
-{ lib, stdenv, buildPythonPackage, python, fetchFromGitHub, attrs, cryptography, async-timeout, pytest-aiohttp, pytest }:
+{ lib, stdenv, buildPythonPackage, python, fetchFromGitHub
+, attrs, cryptography, async-timeout, pytest-aiohttp, pytestCheckHook
+}:
buildPythonPackage rec {
pname = "snitun";
@@ -13,12 +15,14 @@ buildPythonPackage rec {
propagatedBuildInputs = [ attrs cryptography async-timeout ];
- checkInputs = [ pytest pytest-aiohttp ];
+ checkInputs = [ pytestCheckHook pytest-aiohttp ];
- checkPhase = ''
- # https://github.com/NabuCasa/snitun/issues/61
- pytest ${lib.optionalString stdenv.isDarwin "-k 'not test_multiplexer_data_channel_abort_full'"} tests/
- '';
+ disabledTests = lib.optionals stdenv.isDarwin [
+ "test_multiplexer_data_channel_abort_full" # https://github.com/NabuCasa/snitun/issues/61
+ # port binding conflicts
+ "test_snitun_single_runner_timeout"
+ "test_snitun_single_runner_throttling"
+ ];
meta = with lib; {
homepage = "https://github.com/nabucasa/snitun";