nixpkgs/pkgs/development/python-modules/gradient_sdk/default.nix

26 lines
578 B
Nix
Raw Normal View History

{ 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 ];
};
}