about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-12-11 18:44:24 +0200
committerGitHub <noreply@github.com>2020-12-11 18:44:24 +0200
commit945d4b00db75ee257f20821114bfd29a8e770991 (patch)
treef77e62339b9e50fe0f4aede9368e3b43f9ec2727 /pkgs/applications/networking/p2p
parent5b8d7aab43948e7e0b0e52680ee6a6648837f8e1 (diff)
parent0cd4108172332036cf117551b2b191f7216dceda (diff)
downloadnixlib-945d4b00db75ee257f20821114bfd29a8e770991.tar
nixlib-945d4b00db75ee257f20821114bfd29a8e770991.tar.gz
nixlib-945d4b00db75ee257f20821114bfd29a8e770991.tar.bz2
nixlib-945d4b00db75ee257f20821114bfd29a8e770991.tar.lz
nixlib-945d4b00db75ee257f20821114bfd29a8e770991.tar.xz
nixlib-945d4b00db75ee257f20821114bfd29a8e770991.tar.zst
nixlib-945d4b00db75ee257f20821114bfd29a8e770991.zip
Merge pull request #106309 from SuperSandro2000/feature/bump_pyxdg
khal,stig,deluge_1,libtorrent-rasterbar,linkchecker: Disable failing tests
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/deluge/1/default.nix1
-rw-r--r--pkgs/applications/networking/p2p/stig/default.nix7
2 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/networking/p2p/deluge/1/default.nix b/pkgs/applications/networking/p2p/deluge/1/default.nix
index cafba65c788b..7ab337924155 100644
--- a/pkgs/applications/networking/p2p/deluge/1/default.nix
+++ b/pkgs/applications/networking/p2p/deluge/1/default.nix
@@ -36,6 +36,7 @@ pythonPackages.buildPythonPackage rec {
     description = "Torrent client";
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ domenkozar ebzzry ];
+    broken = stdenv.isDarwin;
     platforms = platforms.all;
   };
 }
diff --git a/pkgs/applications/networking/p2p/stig/default.nix b/pkgs/applications/networking/p2p/stig/default.nix
index 276cabfa2aa9..d06a4d4d418a 100644
--- a/pkgs/applications/networking/p2p/stig/default.nix
+++ b/pkgs/applications/networking/p2p/stig/default.nix
@@ -1,4 +1,4 @@
-{ lib
+{ stdenv
 , fetchFromGitHub
 , python3Packages
 }:
@@ -54,9 +54,12 @@ python3Packages.buildPythonApplication rec {
     "--deselect=tests/client_test/ttypes_test.py::TestTimestamp::test_string__month_day_hour_minute_second"
     # TestScrollBarWithScrollable.test_wrapping_bug fails
     "--deselect=tests/tui_test/scroll_test.py::TestScrollBarWithScrollable::test_wrapping_bug"
+  ] ++ stdenv.lib.optionals stdenv.isDarwin [
+    "--deselect=tests/client_test/aiotransmission_test/api_torrent_test.py"
+    "--deselect=tests/client_test/aiotransmission_test/rpc_test.py"
   ];
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "TUI and CLI for the BitTorrent client Transmission";
     homepage = "https://github.com/rndusr/stig";
     license = licenses.gpl3;