python310Packages.scikit-survival 0 -> 1 attrpath: python310Packages.scikit-survival 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] Going to be running update for following packages: - python3.10-scikit-survival-0.20.0 Press Enter key to continue... Running update for: - python3.10-scikit-survival-0.20.0: UPDATING ... - python3.10-scikit-survival-0.20.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/scikit-survival/default.nix b/pkgs/development/python-modules/scikit-survival/default.nix index 7e2b8bf8bfd9..b0b5cb02acdf 100644 --- a/pkgs/development/python-modules/scikit-survival/default.nix +++ b/pkgs/development/python-modules/scikit-survival/default.nix @@ -17,12 +17,12 @@ buildPythonPackage rec { pname = "scikit-survival"; - version = "0.20.0"; + version = "0.22.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-24+8Sociq6u3KnoGSdV5Od5t/OT1uPkv19i3p5ezLjw="; + hash = "sha256-/86tPkXVVi6I2tD4VPvsRlmDomliMZ/sgyTahqsx7NM="; }; nativeBuildInputs = [ An auto update branch exists with message `python310Packages.scikit-survival: 0.20.0 -> 0.21.0`. New version is 0.22.0. The auto update branch does not match or exceed the new version. Old version 0.20.0" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchPypi , cython , ecos , joblib , numexpr , numpy , osqp , pandas , setuptools-scm , scikit-learn , scipy , pytestCheckHook }: buildPythonPackage rec { pname = "scikit-survival"; version = "0.21.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-rcdEtlmD3O2BQuwxRlOJ/HOEBdWJBRJR5UR6rZoeArw="; }; nativeBuildInputs = [ cython setuptools-scm ]; propagatedBuildInputs = [ ecos joblib numexpr numpy osqp pandas scikit-learn scipy ]; pythonImportsCheck = [ "sksurv" ]; nativeCheckInputs = [ pytestCheckHook ]; # Hack needed to make pytest + cython work # https://github.com/NixOS/nixpkgs/pull/82410#issuecomment-827186298 preCheck = '' export HOME=$(mktemp -d) cp -r $TMP/$sourceRoot/tests $HOME pushd $HOME ''; postCheck = "popd"; # very long tests, unnecessary for a leaf package disabledTests = [ "test_coxph" "test_datasets" "test_ensemble_selection" "test_minlip" "test_pandas_inputs" "test_survival_svm" "test_tree" ]; meta = with lib; { broken = (stdenv.isLinux && stdenv.isAarch64); description = "Survival analysis built on top of scikit-learn"; homepage = "https://github.com/sebp/scikit-survival"; license = licenses.gpl3Only; maintainers = with maintainers; [ GuillaumeDesforges ]; }; }