Files
nixpkgs/pkgs/development/python-modules/hyperopt/default.nix
T

30 lines
803 B
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib, fetchPypi, buildPythonPackage
2020-11-02 04:45:43 +01:00
, cloudpickle, numpy, future, networkx
, six, tqdm, scipy, pymongo
}:
buildPythonPackage rec {
pname = "hyperopt";
2020-11-14 15:02:54 +00:00
version = "0.2.5";
2020-11-02 04:45:43 +01:00
src = fetchPypi {
inherit pname version;
2020-11-14 15:02:54 +00:00
sha256 = "bc6047d50f956ae64eebcb34b1fd40f186a93e214957f20e87af2f10195295cc";
2020-11-02 04:45:43 +01:00
};
propagatedBuildInputs = [ future cloudpickle numpy networkx six tqdm scipy pymongo ];
# tries to use /homeless-shelter to mimic container usage, etc
doCheck = false;
pythonImportsCheck = [ "hyperopt" ];
meta = with lib; {
2020-11-02 04:45:43 +01:00
description = "Distributed Asynchronous Hyperparameter Optimization";
homepage = "http://hyperopt.github.com/hyperopt/";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ freezeboy ];
};
}