From 3ca93302d496e6c1487e7895cc55001b034b999f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 4 Jun 2022 07:21:45 +0200 Subject: [PATCH] tahoe-lafs: update meta.platforms, disable outdated test --- pkgs/tools/networking/p2p/tahoe-lafs/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix index c6107086fde5..f50920186dfe 100644 --- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix +++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix @@ -31,6 +31,9 @@ python3Packages.buildPythonApplication rec { sed -i 's/"zope.interface.*"/"zope.interface"/' src/allmydata/_auto_deps.py sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py + + # incompatible with latest autobahn + rm src/allmydata/test/web/test_logs.py ''; # Remove broken and expensive tests. @@ -95,6 +98,6 @@ python3Packages.buildPythonApplication rec { homepage = "https://tahoe-lafs.org/"; license = [ licenses.gpl2Plus /* or */ "TGPPLv1+" ]; maintainers = with lib.maintainers; [ MostAwesomeDude ]; - platforms = platforms.gnu ++ platforms.linux; + platforms = platforms.linux; }; }