mlflow-server 0 -> 1 attrpath: mlflow-server Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/77svckv4jb6cq4nxx8k43938j8y8cd3b-packages.json.drv building '/nix/store/77svckv4jb6cq4nxx8k43938j8y8cd3b-packages.json.drv'... Going to be running update for following packages: - mlflow-2.11.3 Press Enter key to continue... Running update for: - mlflow-2.11.3: UPDATING ... - mlflow-2.11.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/mlflow/default.nix b/pkgs/development/python-modules/mlflow/default.nix index 5d8c91d8bc08..371db9450996 100644 --- a/pkgs/development/python-modules/mlflow/default.nix +++ b/pkgs/development/python-modules/mlflow/default.nix @@ -38,14 +38,14 @@ buildPythonPackage rec { pname = "mlflow"; - version = "2.11.3"; + version = "2.12.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-Yht+MR6JC3lxnC53dyhtjgjTjdBNWrCAlmmQvUpV/rs="; + hash = "sha256-qpKuuyN5qcVITL6QHN93nVQIrJamQeSx+KLR/5dNt8k="; }; # Remove currently broken dependency `shap`, a model explainability package. No auto update branch exists Old version 2.11.3" not present in staging derivation file with contents: { lib , alembic , buildPythonPackage , click , cloudpickle , databricks-cli , docker , entrypoints , fetchPypi , flask , gitpython , gorilla , graphene , gunicorn , importlib-metadata , markdown , matplotlib , numpy , packaging , pandas , prometheus-flask-exporter , protobuf , python-dateutil , pythonOlder , pythonRelaxDepsHook , pyarrow , pytz , pyyaml , querystring-parser , requests , setuptools , scikit-learn , scipy , simplejson , sqlalchemy , sqlparse }: buildPythonPackage rec { pname = "mlflow"; version = "2.12.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-qpKuuyN5qcVITL6QHN93nVQIrJamQeSx+KLR/5dNt8k="; }; # 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 setuptools ]; pythonRemoveDeps = [ "shap" ]; pythonRelaxDeps = [ "packaging" "pytz" "pyarrow" ]; propagatedBuildInputs = [ alembic click cloudpickle databricks-cli docker entrypoints flask gitpython gorilla graphene gunicorn importlib-metadata markdown matplotlib numpy packaging pandas prometheus-flask-exporter protobuf python-dateutil pyarrow pytz pyyaml querystring-parser requests scikit-learn scipy #shap simplejson sqlalchemy sqlparse ]; pythonImportsCheck = [ "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 buildFHSEnv doCheck = false; meta = with lib; { description = "Open source platform for the machine learning lifecycle"; mainProgram = "mlflow"; homepage = "https://github.com/mlflow/mlflow"; changelog = "https://github.com/mlflow/mlflow/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ tbenst ]; }; }