24 lines
605 B
Nix
24 lines
605 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "smdebug-rulesconfig";
|
|
version = "1.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "smdebug_rulesconfig";
|
|
sha256 = "1mpwjfvpmryqqwlbyf500584jclgm3vnxa740yyfzkvb5vmyc6bs";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "smdebug_rulesconfig" ];
|
|
|
|
meta = with lib; {
|
|
description = "These builtin rules are available in Amazon SageMaker";
|
|
homepage = "https://github.com/awslabs/sagemaker-debugger-rulesconfig";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nequissimus ];
|
|
};
|
|
}
|