2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchPypi, buildPythonPackage
|
2020-11-02 03:47:55 +00:00
|
|
|
, hyperopt
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gradient_sdk";
|
|
|
|
version = "0.0.4";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "Q9oeYjjgJf2lhxW1ypsweQAPpMglmW9PxgzMsgTqJkY=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ hyperopt ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "gradient_sdk" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-02 03:47:55 +00:00
|
|
|
description = "Gradient ML SDK";
|
|
|
|
homepage = "https://github.com/Paperspace/gradient-sdk";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
|
|
};
|
|
|
|
}
|