python310Packages.lightgbm 0 -> 1 attrpath: python310Packages.lightgbm 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/q4djmsp40a06ib0w7aa0xhdhs7n3cc9g-packages.json.drv building '/nix/store/q4djmsp40a06ib0w7aa0xhdhs7n3cc9g-packages.json.drv'... Going to be running update for following packages: - python3.10-lightgbm-3.3.2 Press Enter key to continue... Running update for: - python3.10-lightgbm-3.3.2: UPDATING ... - python3.10-lightgbm-3.3.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/lightgbm/default.nix b/pkgs/development/python-modules/lightgbm/default.nix index ad54268c8cf..179afb34d14 100644 --- a/pkgs/development/python-modules/lightgbm/default.nix +++ b/pkgs/development/python-modules/lightgbm/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "lightgbm"; - version = "3.3.2"; + version = "3.3.4"; src = fetchPypi { inherit pname version; - sha256 = "5d25d16e77c844c297ece2044df57651139bc3c8ad8c4108916374267ac68b64"; + sha256 = "sha256-1vpNWypvONWIQ0GT82Z1eyCzATALc4XKaSTi5AL8kGM="; }; nativeBuildInputs = [ An auto update branch exists with message `python310Packages.lightgbm: 3.3.2 -> 3.3.3`. New version is 3.3.4. The auto update branch does not match or exceed the new version. Old version 3.3.2" not present in staging derivation file with contents: { lib, stdenv , buildPythonPackage , fetchPypi , cmake , numpy , scipy , scikit-learn , llvmPackages ? null }: buildPythonPackage rec { pname = "lightgbm"; version = "3.3.3"; src = fetchPypi { inherit pname version; sha256 = "sha256-hX5VmuhKIpY84rYhaCkpadIa3TC8kkaoTU5+7a5nlm0="; }; nativeBuildInputs = [ cmake ]; dontUseCmakeConfigure = true; buildInputs = lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ]; propagatedBuildInputs = [ numpy scipy scikit-learn ]; postConfigure = '' export HOME=$(mktemp -d) ''; # The pypi package doesn't distribute the tests from the GitHub # repository. It contains c++ tests which don't seem to wired up to # `make check`. doCheck = false; pythonImportsCheck = [ "lightgbm" ]; meta = with lib; { description = "A fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework"; homepage = "https://github.com/Microsoft/LightGBM"; license = licenses.mit; maintainers = with maintainers; [ teh costrouc ]; }; }