mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.sagemaker-mlflow: init at 0.1.0
This commit is contained in:
parent
132098649f
commit
b8ec1309e6
74
pkgs/development/python-modules/sagemaker-mlflow/default.nix
Normal file
74
pkgs/development/python-modules/sagemaker-mlflow/default.nix
Normal file
@ -0,0 +1,74 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
|
||||
# dependencies
|
||||
boto3,
|
||||
mlflow,
|
||||
|
||||
# tests
|
||||
pytestCheckHook,
|
||||
scikit-learn,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sagemaker-mlflow";
|
||||
version = "0.1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aws";
|
||||
repo = "sagemaker-mlflow";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-1bonIqZ+cFxCOxoFWn1MLBOIiB1wUX69/lUTPPupJaw=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace VERSION \
|
||||
--replace-fail "${version}.dev0" "${version}"
|
||||
'';
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
boto3
|
||||
mlflow
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sagemaker_mlflow"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
scikit-learn
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# AssertionError: assert 's3' in '/build/source/not implemented/0/d3c16d2bad4245bf9fc68f86d2e7599d/artifacts'
|
||||
"test_log_metric"
|
||||
|
||||
# AssertionError: assert 'not implemented' == 'mw'
|
||||
"test_request_header"
|
||||
|
||||
# Require internet access
|
||||
"test_auth_provider_returns_correct_sigv4"
|
||||
"test_log_artifact"
|
||||
"test_presigned_url"
|
||||
"test_presigned_url_with_fields"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "MLFlow plugin for SageMaker";
|
||||
homepage = "https://github.com/aws/sagemaker-mlflow";
|
||||
changelog = "https://github.com/aws/sagemaker-mlflow/releases/tag/v${version}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ GaetanLepage ];
|
||||
};
|
||||
}
|
@ -13962,6 +13962,8 @@ self: super: with self; {
|
||||
|
||||
sagemaker-core = callPackage ../development/python-modules/sagemaker-core { };
|
||||
|
||||
sagemaker-mlflow = callPackage ../development/python-modules/sagemaker-mlflow { };
|
||||
|
||||
salib = callPackage ../development/python-modules/salib { };
|
||||
|
||||
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
|
||||
|
Loading…
Reference in New Issue
Block a user