python310Packages.wandb 0 -> 1 attrpath: python310Packages.wandb 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/5mfyrbhlmr3x0djp2sji0w8iz9zjph5y-packages.json.drv building '/nix/store/5mfyrbhlmr3x0djp2sji0w8iz9zjph5y-packages.json.drv'... Going to be running update for following packages: - python3.10-wandb-0.13.5 Press Enter key to continue... Running update for: - python3.10-wandb-0.13.5: UPDATING ... - python3.10-wandb-0.13.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index b649bd16880..8925ea7f347 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { pname = "wandb"; - version = "0.13.5"; + version = "0.13.7"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -48,7 +48,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-1GoFmncG5bUWJOIUDLatopQMxCFsmlcj8aofJMGUTzQ="; + hash = "sha256-o9mIGSILztnHY3Eyb0MlznUEdMbCfA1BT6ux0UlesBc="; }; patches = [ No auto update branch exists Old version 0.13.5" not present in staging derivation file with contents: { lib , stdenv , azure-core , bokeh , buildPythonPackage , click , docker_pycreds , fetchFromGitHub , flask , git , gitpython , jsonref , jsonschema , matplotlib , nbclient , nbformat , pandas , pathtools , promise , protobuf , psutil , pydantic , pytest-mock , pytest-xdist , pytestCheckHook , pythonOlder , pythonRelaxDepsHook , torch , pyyaml , requests , scikit-learn , sentry-sdk , setproctitle , setuptools , shortuuid , substituteAll , tqdm }: buildPythonPackage rec { pname = "wandb"; version = "0.13.7"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-o9mIGSILztnHY3Eyb0MlznUEdMbCfA1BT6ux0UlesBc="; }; patches = [ # Replace git paths (substituteAll { src = ./hardcode-git-path.patch; git = "${lib.getBin git}/bin/git"; }) ]; nativeBuildInputs = [ pythonRelaxDepsHook ]; # setuptools is necessary since pkg_resources is required at runtime. propagatedBuildInputs = [ click docker_pycreds gitpython pathtools promise protobuf psutil pyyaml requests sentry-sdk setproctitle setuptools shortuuid ]; checkInputs = [ azure-core bokeh flask jsonref jsonschema matplotlib nbclient nbformat pandas pydantic pytest-mock pytest-xdist pytestCheckHook torch scikit-learn tqdm ]; preCheck = '' export HOME=$(mktemp -d) ''; pythonRelaxDeps = [ "protobuf" ]; disabledTestPaths = [ # Tests that try to get chatty over sockets or spin up servers, not possible in the nix build environment. "tests/unit_tests_old/test_cli.py" "tests/unit_tests_old/test_data_types.py" "tests/unit_tests_old/test_file_stream.py" "tests/unit_tests_old/test_file_upload.py" "tests/unit_tests_old/test_footer.py" "tests/unit_tests_old/test_internal_api.py" "tests/unit_tests_old/test_keras.py" "tests/unit_tests_old/test_logging.py" "tests/unit_tests_old/test_metric_internal.py" "tests/unit_tests_old/test_public_api.py" "tests/unit_tests_old/test_report_api.py" "tests/unit_tests_old/test_runtime.py" "tests/unit_tests_old/test_sender.py" "tests/unit_tests_old/test_tb_watcher.py" "tests/unit_tests_old/test_time_resolution.py" "tests/unit_tests_old/test_wandb_agent.py" "tests/unit_tests_old/test_wandb_artifacts.py" "tests/unit_tests_old/test_wandb_integration.py" "tests/unit_tests_old/test_wandb_run.py" "tests/unit_tests/test_cli.py" "tests/unit_tests/test_data_types.py" "tests/unit_tests/test_file_upload.py" "tests/unit_tests/test_footer.py" "tests/unit_tests/test_internal_api.py" "tests/unit_tests/test_label_full.py" "tests/unit_tests/test_login.py" "tests/unit_tests/test_metric_full.py" "tests/unit_tests/test_metric_internal.py" "tests/unit_tests/test_mode_disabled.py" "tests/unit_tests/test_model_workflows.py" "tests/unit_tests/test_mp_full.py" "tests/unit_tests/test_plots.py" "tests/unit_tests/test_public_api.py" "tests/unit_tests/test_runtime.py" "tests/unit_tests/test_sender.py" "tests/unit_tests/test_start_method.py" "tests/unit_tests/test_tb_watcher.py" "tests/unit_tests/test_telemetry_full.py" "tests/unit_tests/test_util.py" # Tries to access /homeless-shelter "tests/unit_tests/test_tables.py" ]; # Disable test that fails on darwin due to issue with python3Packages.psutil: # https://github.com/giampaolo/psutil/issues/1219 disabledTests = lib.optionals stdenv.isDarwin [ "test_tpu_system_stats" ]; pythonImportsCheck = [ "wandb" ]; meta = with lib; { description = "A CLI and library for interacting with the Weights and Biases API"; homepage = "https://github.com/wandb/wandb"; changelog = "https://github.com/wandb/wandb/raw/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ samuela ]; }; }