summary refs log tree commit diff
path: root/pkgs/development/python-modules/distributed
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-03-27 00:39:36 -0400
committerJon <jonringer@users.noreply.github.com>2020-03-26 22:14:13 -0700
commitacfe7e0dbce1a1fab9dc040026e7720e955dd956 (patch)
tree7752b7ce448d2c2c7f964583afbc45bad349c9d8 /pkgs/development/python-modules/distributed
parentf5ffd143d661d30e99f1c01687ef4e36be8773ce (diff)
downloadnixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.tar
nixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.tar.gz
nixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.tar.bz2
nixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.tar.lz
nixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.tar.xz
nixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.tar.zst
nixpkgs-acfe7e0dbce1a1fab9dc040026e7720e955dd956.zip
pythonPackages.distributed: remove bad check dependency on pytest-faulthandler
Diffstat (limited to 'pkgs/development/python-modules/distributed')
-rw-r--r--pkgs/development/python-modules/distributed/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix
index 951593bac97..d85b4496e22 100644
--- a/pkgs/development/python-modules/distributed/default.nix
+++ b/pkgs/development/python-modules/distributed/default.nix
@@ -3,7 +3,6 @@
 , fetchPypi
 , pytest
 , pytest-repeat
-, pytest-faulthandler
 , pytest-timeout
 , mock
 , joblib
@@ -36,7 +35,7 @@ buildPythonPackage rec {
     sha256 = "d37a5c5be992f3b16db24b54d2801cbe370990fbc63089c6e7ef40d6f03cf5dd";
   };
 
-  checkInputs = [ pytest pytest-repeat pytest-faulthandler pytest-timeout mock joblib ];
+  checkInputs = [ pytest pytest-repeat pytest-timeout mock joblib ];
   propagatedBuildInputs = [
       click cloudpickle dask msgpack psutil six
       sortedcontainers tblib toolz tornado zict pyyaml mpi4py bokeh
@@ -54,7 +53,7 @@ buildPythonPackage rec {
 
   meta = {
     description = "Distributed computation in Python.";
-    homepage = https://distributed.readthedocs.io/en/latest/;
+    homepage = "https://distributed.readthedocs.io/en/latest/";
     license = lib.licenses.bsd3;
     platforms = lib.platforms.x86; # fails on aarch64
     maintainers = with lib.maintainers; [ teh costrouc ];