Fix Tahoe-LAFS tests (thanks to zooko)

Zooko pointed out on IRC that running python setup.py build, before running the tests will create /bin/tahoe (which is necessary for running the tests).

+2 -3
+2 -3
pkgs/tools/networking/p2p/tahoe-lafs/default.nix
··· 71 find "$out/share/doc/${name}" -name Makefile -exec rm -v {} \; 72 73 # Run the tests once everything is installed. 74 - # FIXME: Some of the tests want to run $out/bin/tahoe, which isn't usable 75 - # yet because it gets wrapped later on, in `postFixup'. 76 export PYTHON_EGG_CACHE="$TMPDIR" 77 - : python setup.py trial 78 ''; 79 80 meta = {
··· 71 find "$out/share/doc/${name}" -name Makefile -exec rm -v {} \; 72 73 # Run the tests once everything is installed. 74 export PYTHON_EGG_CACHE="$TMPDIR" 75 + python setup.py build 76 + python setup.py trial 77 ''; 78 79 meta = {