python3Packages.gradient_sdk: init at 0.0.4
This commit is contained in:
parent
bf066b27b4
commit
bbc0af82bd
25
pkgs/development/python-modules/gradient_sdk/default.nix
Normal file
25
pkgs/development/python-modules/gradient_sdk/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ 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 stdenv.lib; {
|
||||
description = "Gradient ML SDK";
|
||||
homepage = "https://github.com/Paperspace/gradient-sdk";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
};
|
||||
}
|
@ -2562,6 +2562,8 @@ in {
|
||||
|
||||
gpyopt = callPackage ../development/python-modules/gpyopt { };
|
||||
|
||||
gradient_sdk = callPackage ../development/python-modules/gradient_sdk { };
|
||||
|
||||
grammalecte = callPackage ../development/python-modules/grammalecte { };
|
||||
|
||||
grandalf = callPackage ../development/python-modules/grandalf { };
|
||||
|
Loading…
Reference in New Issue
Block a user