summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/gradient_sdk/default.nix
blob: 3dffb38f2ffc885ffe05d9f85fba916a616b6d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, 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 ];
  };
}