From 3671657bfb722d70230465fe0e1bd03f50588340 Mon Sep 17 00:00:00 2001 From: Corbin Date: Sun, 10 Feb 2019 13:42:14 -0800 Subject: [PATCH] pythonPackages.magic-wormhole-transit-relay: Fix tests. Calling Trial directly enables PyPy support, since our PyPy packages only have a `pypy` binary rather than `python`. --- .../python-modules/magic-wormhole-transit-relay/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix b/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix index a553a3bf433..5ddece686fa 100644 --- a/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix +++ b/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { checkInputs = [ mock ]; checkPhase = '' - python -m twisted.trial wormhole_transit_relay + ${twisted}/bin/trial wormhole_transit_relay ''; meta = with lib; {