python36Packages.distributed: 1.24.0 -> 1.24.1

* python36Packages.distributed: 1.24.0 -> 1.24.1 (#50621)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-distributed/versions

* distributed: build for x86 only

x64-darwin + x64-linux
This commit is contained in:
R. RyanTM 2018-11-18 14:20:15 -08:00 committed by Renaud
parent 16626990d0
commit 151cc7c288

View File

@ -26,12 +26,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "distributed"; pname = "distributed";
version = "1.24.0"; version = "1.24.1";
# get full repository need conftest.py to run tests # get full repository need conftest.py to run tests
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1a1wynxzs9i2mdz50fs23r9223fmkpwwr0kprqjyb31ladkk07c4"; sha256 = "13qch8wgjzx9zadaxasym3bp3a74bg5snhnbznpggssv3hyshca7";
}; };
checkInputs = [ pytest pytest-repeat pytest-faulthandler pytest-timeout mock joblib ]; checkInputs = [ pytest pytest-repeat pytest-faulthandler pytest-timeout mock joblib ];
@ -55,6 +55,7 @@ buildPythonPackage rec {
description = "Distributed computation in Python."; description = "Distributed computation in Python.";
homepage = http://distributed.readthedocs.io/en/latest/; homepage = http://distributed.readthedocs.io/en/latest/;
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
platforms = lib.platforms.x86; # fails on aarch64
maintainers = with lib.maintainers; [ teh costrouc ]; maintainers = with lib.maintainers; [ teh costrouc ];
}; };
} }