Also add azureml
This commit is contained in:
parent
782aba19ba
commit
c1c14e1ce9
|
@ -39,6 +39,7 @@
|
||||||
pydot
|
pydot
|
||||||
graphviz
|
graphviz
|
||||||
(python311.pkgs.callPackage ./pkgs/azureml-mlflow/default.nix {})
|
(python311.pkgs.callPackage ./pkgs/azureml-mlflow/default.nix {})
|
||||||
|
(python311.pkgs.callPackage ./pkgs/azure-ai-ml/default.nix {})
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
33
pkgs/azure-ai-ml/default.nix
Normal file
33
pkgs/azure-ai-ml/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
setuptools,
|
||||||
|
python311,
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure_ai_ml";
|
||||||
|
version = "1.19.0";
|
||||||
|
format = "wheel";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version format;
|
||||||
|
sha256 = "sha256-8Dha8G776uH4MRNhPkU0NQjRKI/S8FhXYZ58fU1PUwI=";
|
||||||
|
dist = "py3";
|
||||||
|
python = "py3";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [setuptools];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false; # Package does not contain tests
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The azureml-mlflow package contains the integration code of AzureML with MLflow. MLflow (https://mlflow.org/) is an open-source platform for tracking machine learning experiments and managing models. You can use MLflow logging APIs with Azure Machine Learning so that metrics and artifacts are logged to your Azure machine learning workspace.";
|
||||||
|
homepage = "https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [Lillian-Violet];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue