about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@users.noreply.github.com>2019-04-11 16:22:59 -0400
committerRobert Schütz <rschuetz17@gmail.com>2019-04-11 22:22:59 +0200
commitbe8f891c5ab9e5070dbb323f4b2624141ba53785 (patch)
tree98c3121ced0367925c0139e939fa5f2bd69e8ff2 /pkgs/tools/networking
parent25d29f271e5977fffb5597f80fa5d6719858ac0b (diff)
downloadnixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.tar
nixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.tar.gz
nixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.tar.bz2
nixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.tar.lz
nixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.tar.xz
nixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.tar.zst
nixlib-be8f891c5ab9e5070dbb323f4b2624141ba53785.zip
tahoe-lafs: clean up inputs (#59231)
Numpy has not been a dependency since 2012.
Apart from being unnecessary, numpy depends on openblas which fails to build on aarch64.
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/p2p/tahoe-lafs/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix
index 3e9d1f9f5f7e..97bf456dbbd9 100644
--- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix
+++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix
@@ -50,8 +50,6 @@ pythonPackages.buildPythonApplication rec {
 
   nativeBuildInputs = with pythonPackages; [ sphinx texinfo ];
 
-  buildInputs = with pythonPackages; [ unzip numpy mock ];
-
   # The `backup' command requires `sqlite3'.
   propagatedBuildInputs = with pythonPackages; [
     twisted foolscap nevow simplejson zfec pycryptopp darcsver
@@ -59,7 +57,7 @@ pythonPackages.buildPythonApplication rec {
     service-identity pyyaml magic-wormhole treq
   ];
 
-  checkInputs = with pythonPackages; [ hypothesis twisted ];
+  checkInputs = with pythonPackages; [ mock hypothesis twisted ];
 
   # Install the documentation.
   postInstall = ''