lol

python3Packages.hyperopt: add py4j

authored by

Fabian Affolter and committed by
Jonathan Ringer
cfc4e636 b36da421

+32 -8
+32 -8
pkgs/development/python-modules/hyperopt/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage 2 - , cloudpickle, numpy, future, networkx 3 - , six, tqdm, scipy, pymongo 1 + { lib 2 + , buildPythonPackage 3 + , cloudpickle 4 + , fetchPypi 5 + , future 6 + , networkx 7 + , numpy 8 + , py4j 9 + , pymongo 10 + , pyspark 11 + , scipy 12 + , six 13 + , tqdm 4 14 }: 5 15 6 16 buildPythonPackage rec { 7 17 pname = "hyperopt"; 8 18 version = "0.2.7"; 19 + format = "setuptools"; 9 20 10 21 src = fetchPypi { 11 22 inherit pname version; 12 23 sha256 = "1bf89ae58050bbd32c7307199046117feee245c2fd9ab6255c7308522b7ca149"; 13 24 }; 14 25 15 - propagatedBuildInputs = [ future cloudpickle numpy networkx six tqdm scipy pymongo ]; 26 + propagatedBuildInputs = [ 27 + cloudpickle 28 + future 29 + networkx 30 + numpy 31 + py4j 32 + pymongo 33 + pyspark 34 + scipy 35 + six 36 + tqdm 37 + ]; 16 38 17 39 # tries to use /homeless-shelter to mimic container usage, etc 18 40 doCheck = false; 19 41 20 - pythonImportsCheck = [ "hyperopt" ]; 42 + pythonImportsCheck = [ 43 + "hyperopt" 44 + ]; 21 45 22 46 meta = with lib; { 23 47 description = "Distributed Asynchronous Hyperparameter Optimization"; 24 - homepage = "http://hyperopt.github.com/hyperopt/"; 25 - license = licenses.bsd2; 26 - platforms = platforms.unix; 48 + homepage = "http://hyperopt.github.io/hyperopt/"; 49 + license = licenses.bsd2; 50 + platforms = platforms.unix; 27 51 maintainers = with maintainers; [ freezeboy ]; 28 52 }; 29 53 }