a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
25 lines
578 B
Nix
25 lines
578 B
Nix
{ lib, stdenv, fetchPypi, buildPythonPackage
|
|
, hyperopt
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gradient_sdk";
|
|
version = "0.0.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "Q9oeYjjgJf2lhxW1ypsweQAPpMglmW9PxgzMsgTqJkY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ hyperopt ];
|
|
|
|
pythonImportsCheck = [ "gradient_sdk" ];
|
|
|
|
meta = with lib; {
|
|
description = "Gradient ML SDK";
|
|
homepage = "https://github.com/Paperspace/gradient-sdk";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
};
|
|
}
|