summary refs log tree commit diff
path: root/pkgs/development/python-modules/distributed
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-02 23:38:33 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-02 23:38:33 +0200
commitdab21493f86bd73569f6771a94383dff16419533 (patch)
tree8849f1dc2cd6d242e9927f59e99a22630f3c9d37 /pkgs/development/python-modules/distributed
parent6ae86bd0f6d0e44f459919ee2c7be7a0877d6b46 (diff)
downloadnixpkgs-dab21493f86bd73569f6771a94383dff16419533.tar
nixpkgs-dab21493f86bd73569f6771a94383dff16419533.tar.gz
nixpkgs-dab21493f86bd73569f6771a94383dff16419533.tar.bz2
nixpkgs-dab21493f86bd73569f6771a94383dff16419533.tar.lz
nixpkgs-dab21493f86bd73569f6771a94383dff16419533.tar.xz
nixpkgs-dab21493f86bd73569f6771a94383dff16419533.tar.zst
nixpkgs-dab21493f86bd73569f6771a94383dff16419533.zip
python3Packages.distributed: 2021.6.1 -> 2021.6.2
Diffstat (limited to 'pkgs/development/python-modules/distributed')
-rw-r--r--pkgs/development/python-modules/distributed/default.nix25
1 files changed, 18 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix
index 605e905d4ab..ce0cf13e9a9 100644
--- a/pkgs/development/python-modules/distributed/default.nix
+++ b/pkgs/development/python-modules/distributed/default.nix
@@ -6,7 +6,6 @@
 , dask
 , msgpack
 , psutil
-, six
 , sortedcontainers
 , tblib
 , toolz
@@ -20,27 +19,39 @@
 
 buildPythonPackage rec {
   pname = "distributed";
-  version = "2021.6.1";
+  version = "2021.6.2";
   disabled = pythonOlder "3.6";
 
   # get full repository need conftest.py to run tests
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-Z79h/WAio5diX2myChx8HPAWe2RB4Ajw7Ybch4XUYFc=";
+    sha256 = "sha256-19ESqGqwSdzvo7If0brqQhKiwD0iwkvVWtONIaf10Ug=";
   };
 
   propagatedBuildInputs = [
-      click cloudpickle dask msgpack psutil six
-      sortedcontainers tblib toolz tornado zict pyyaml mpi4py bokeh
+    bokeh
+    click
+    cloudpickle
+    dask
+    mpi4py
+    msgpack
+    psutil
+    pyyaml
+    sortedcontainers
+    tblib
+    toolz
+    tornado
+    zict
   ];
 
   # when tested random tests would fail and not repeatably
   doCheck = false;
+
   pythonImportsCheck = [ "distributed" ];
 
   meta = with lib; {
-    description = "Distributed computation in Python.";
-    homepage = "https://distributed.readthedocs.io/en/latest/";
+    description = "Distributed computation in Python";
+    homepage = "https://distributed.readthedocs.io/";
     license = licenses.bsd3;
     platforms = platforms.x86; # fails on aarch64
     maintainers = with maintainers; [ teh costrouc ];