python311Packages.mlflow 2.7.0 -> 2.9.2 https://repology.org/project/python:mlflow/versions attrpath: python311Packages.mlflow 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/6hk4kgkk7a9i7ls4nxy7nj8530sbs63z-packages.json.drv building '/nix/store/6hk4kgkk7a9i7ls4nxy7nj8530sbs63z-packages.json.drv'... Going to be running update for following packages: - python3.11-mlflow-2.7.0 Press Enter key to continue... Running update for: - python3.11-mlflow-2.7.0: UPDATING ... - python3.11-mlflow-2.7.0: 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 41ebc9545cef..73cfc961f3ba 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.7.0"; + version = "2.9.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-3q8PXydgjpUm1p//zKcMgirJDqKQpvPkuz36GyCbARE="; + hash = "sha256-JfKtPQsOeL0yKWBY+0wxXf9DeVFc1mmsYTfzlQe53+k="; }; postPatch = '' No auto update branch exists Old version 2.7.0" not present in staging derivation file with contents: { lib , alembic , buildPythonPackage , click , cloudpickle , databricks-cli , docker , entrypoints , fetchpatch , fetchPypi , flask , gitpython , gorilla , gunicorn , importlib-metadata , markdown , matplotlib , numpy , packaging , pandas , prometheus-flask-exporter , protobuf , python-dateutil , pythonOlder , pythonRelaxDepsHook , pyarrow , pytz , pyyaml , querystring_parser , requests , scikit-learn , scipy , shap , simplejson , sqlalchemy , sqlparse }: buildPythonPackage rec { pname = "mlflow"; version = "2.8.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-5OW90tnvsLOG7Lzi335D8ExGoyCAIIQU3FO1/XFVlng="; }; postPatch = '' substituteInPlace requirements/core-requirements.txt \ --replace "gunicorn<21" "gunicorn" ''; # 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" ]; pythonRelaxDeps = [ "pytz" "pyarrow" ]; propagatedBuildInputs = [ alembic click cloudpickle databricks-cli docker entrypoints flask gitpython gorilla 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"; homepage = "https://github.com/mlflow/mlflow"; changelog = "https://github.com/mlflow/mlflow/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ tbenst ]; }; }