summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-04-06 18:50:43 -0500
committerGitHub <noreply@github.com>2023-04-06 18:50:43 -0500
commit020b29eba58be92a50134d4b0ee2d4633f335ee3 (patch)
tree9d72ccc18cb05921e4d22ace27c4b337f57ff2ad
parentMerge pull request #222266 from dylanmtaylor/meraki-cli (diff)
parentpython310Packages.mlflow: unbreak (diff)
downloadnixpkgs-020b29eba58be92a50134d4b0ee2d4633f335ee3.tar.gz
Merge pull request #225007 from bcdarwin/unbreak-mlflow
python310Packages.mlflow: unbreak
-rw-r--r--pkgs/development/python-modules/mlflow/default.nix28
1 files changed, 20 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/mlflow/default.nix b/pkgs/development/python-modules/mlflow/default.nix
index acce882d87c7..1f3c22dc8138 100644
--- a/pkgs/development/python-modules/mlflow/default.nix
+++ b/pkgs/development/python-modules/mlflow/default.nix
@@ -13,6 +13,8 @@
, gorilla
, gunicorn
, importlib-metadata
+, markdown
+, matplotlib
, numpy
, packaging
, pandas
@@ -20,28 +22,37 @@
, protobuf
, python-dateutil
, pythonOlder
+, pythonRelaxDepsHook
+, pyarrow
, pyyaml
, querystring_parser
, requests
+, scikit-learn
, scipy
+, shap
, simplejson
-, six
, sqlalchemy
, sqlparse
}:
buildPythonPackage rec {
pname = "mlflow";
- version = "2.1.1";
+ version = "2.2.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-oRazzUW7+1CaFyO/1DiL21ZqPlBF483lOQ5mf1kUmKY=";
+ hash = "sha256-PvLC7iDJp63t/zTnVsbtrGLPTZBXZa0OgHS8naoMWAw";
};
+ # Remove currently broken dependency `shap`, a model explainability package.
+ # This seems quite unprincipled especially with tests not being enabled,
+ # but not mlflow has a 'skinny' install option which does not require `shap`.
+ nativeBuildInputs = [ pythonRelaxDepsHook ];
+ pythonRemoveDeps = [ "shap" ];
+
propagatedBuildInputs = [
alembic
click
@@ -54,18 +65,22 @@ buildPythonPackage rec {
gorilla
gunicorn
importlib-metadata
+ markdown
+ matplotlib
numpy
packaging
pandas
prometheus-flask-exporter
protobuf
python-dateutil
+ pyarrow
pyyaml
querystring_parser
requests
+ scikit-learn
scipy
+ #shap
simplejson
- six
sqlalchemy
sqlparse
];
@@ -74,6 +89,7 @@ buildPythonPackage rec {
"mlflow"
];
+ # no tests in PyPI dist
# run into https://stackoverflow.com/questions/51203641/attributeerror-module-alembic-context-has-no-attribute-config
# also, tests use conda so can't run on NixOS without buildFHSUserEnv
doCheck = false;
@@ -84,9 +100,5 @@ buildPythonPackage rec {
changelog = "https://github.com/mlflow/mlflow/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ tbenst ];
- knownVulnerabilities = [
- "CVE-2023-1176"
- "CVE-2023-1177"
- ];
};
}