406 lines
10 KiB
Nix
406 lines
10 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
|
|
## wandb-core
|
|
buildGoModule,
|
|
git,
|
|
versionCheckHook,
|
|
fetchpatch2,
|
|
|
|
## gpu-stats
|
|
rustPlatform,
|
|
|
|
## wandb
|
|
buildPythonPackage,
|
|
replaceVars,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
click,
|
|
docker-pycreds,
|
|
gitpython,
|
|
platformdirs,
|
|
protobuf,
|
|
psutil,
|
|
pydantic,
|
|
pyyaml,
|
|
requests,
|
|
sentry-sdk,
|
|
setproctitle,
|
|
setuptools,
|
|
pythonOlder,
|
|
eval-type-backport,
|
|
typing-extensions,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
azure-core,
|
|
azure-containerregistry,
|
|
azure-identity,
|
|
azure-storage-blob,
|
|
bokeh,
|
|
boto3,
|
|
coverage,
|
|
flask,
|
|
google-cloud-artifact-registry,
|
|
google-cloud-compute,
|
|
google-cloud-storage,
|
|
hypothesis,
|
|
jsonschema,
|
|
kubernetes,
|
|
kubernetes-asyncio,
|
|
matplotlib,
|
|
moviepy,
|
|
pandas,
|
|
parameterized,
|
|
pillow,
|
|
plotly,
|
|
pyfakefs,
|
|
pyte,
|
|
pytest-asyncio,
|
|
pytest-cov-stub,
|
|
pytest-mock,
|
|
pytest-timeout,
|
|
pytest-xdist,
|
|
rdkit,
|
|
responses,
|
|
scikit-learn,
|
|
soundfile,
|
|
tenacity,
|
|
torch,
|
|
torchvision,
|
|
tqdm,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
|
|
let
|
|
version = "0.19.11";
|
|
src = fetchFromGitHub {
|
|
owner = "wandb";
|
|
repo = "wandb";
|
|
tag = "v${version}";
|
|
hash = "sha256-JsciaNN1l3Ldty8dB2meRXWz62JdLRXeG09b7PNrQx4=";
|
|
};
|
|
|
|
gpu-stats = rustPlatform.buildRustPackage {
|
|
pname = "gpu-stats";
|
|
version = "0.4.0";
|
|
inherit src;
|
|
|
|
sourceRoot = "${src.name}/gpu_stats";
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-q8csheytw57C6+wPPaANkMkW1Smoo+IViiA6Cdrag4Q=";
|
|
|
|
checkFlags = [
|
|
# fails in sandbox
|
|
"--skip=gpu_amd::tests::test_gpu_amd_new"
|
|
];
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
versionCheckProgram = "${placeholder "out"}/bin/gpu_stats";
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
mainProgram = "gpu_stats";
|
|
};
|
|
};
|
|
|
|
wandb-core = buildGoModule rec {
|
|
pname = "wandb-core";
|
|
inherit src version;
|
|
|
|
sourceRoot = "${src.name}/core";
|
|
|
|
# x86_64-darwin fails with:
|
|
# "link: duplicated definition of symbol dlopen, from github.com/ebitengine/purego and github.com/ebitengine/purego"
|
|
# This is fixed in purego 0.8.3, but wandb-core uses 0.8.2, so we pull in the fix here.
|
|
patches = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
|
|
(fetchpatch2 {
|
|
url = "https://github.com/ebitengine/purego/commit/1638563e361522e5f63511d84c4541ae1c5fd704.patch";
|
|
stripLen = 1;
|
|
extraPrefix = "vendor/github.com/ebitengine/purego/";
|
|
# These are not vendored by wandb-core
|
|
excludes = [
|
|
"vendor/github.com/ebitengine/purego/.github/workflows/test.yml"
|
|
"vendor/github.com/ebitengine/purego/internal/fakecgo/gen.go"
|
|
];
|
|
hash = "sha256-GoT/OL6r3rJY5zoUyl3kGzSRpX3PoI7Yjpe7oRb0cFc=";
|
|
})
|
|
];
|
|
|
|
# hardcode the `gpu_stats` binary path.
|
|
postPatch = ''
|
|
substituteInPlace pkg/monitor/gpuresourcemanager.go \
|
|
--replace-fail \
|
|
'cmdPath, err := getGPUCollectorCmdPath()' \
|
|
'cmdPath, err := "${lib.getExe gpu-stats}", error(nil)'
|
|
'';
|
|
|
|
vendorHash = null;
|
|
|
|
nativeBuildInputs = [
|
|
git
|
|
];
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
checkFlags =
|
|
let
|
|
skippedTests = [
|
|
# gpu sampling crashes in the sandbox
|
|
"TestSystemMonitor_BasicStateTransitions"
|
|
"TestSystemMonitor_RepeatedCalls"
|
|
"TestSystemMonitor_UnexpectedTransitions"
|
|
"TestSystemMonitor_FullCycle"
|
|
];
|
|
in
|
|
[ "-skip=^${lib.concatStringsSep "$|^" skippedTests}$" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta.mainProgram = "wandb-core";
|
|
};
|
|
in
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wandb";
|
|
pyproject = true;
|
|
|
|
inherit src version;
|
|
|
|
patches = [
|
|
# Replace git paths
|
|
(replaceVars ./hardcode-git-path.patch {
|
|
git = lib.getExe git;
|
|
})
|
|
];
|
|
|
|
# Hard-code the path to the `wandb-core` binary in the code.
|
|
postPatch = ''
|
|
substituteInPlace wandb/util.py \
|
|
--replace-fail \
|
|
'bin_path = pathlib.Path(__file__).parent / "bin" / "wandb-core"' \
|
|
'bin_path = pathlib.Path("${lib.getExe wandb-core}")'
|
|
'';
|
|
|
|
env = {
|
|
# Prevent the install script to try building and embedding the `gpu_stats` and `wandb-core`
|
|
# binaries in the wheel.
|
|
# Their path have been patched accordingly in the `wandb-core` and `wanbd` source codes.
|
|
# https://github.com/wandb/wandb/blob/v0.18.5/hatch_build.py#L37-L47
|
|
WANDB_BUILD_SKIP_GPU_STATS = true;
|
|
WANDB_BUILD_UNIVERSAL = true;
|
|
};
|
|
|
|
build-system = [
|
|
hatchling
|
|
];
|
|
|
|
dependencies =
|
|
[
|
|
click
|
|
docker-pycreds
|
|
gitpython
|
|
platformdirs
|
|
protobuf
|
|
psutil
|
|
pydantic
|
|
pyyaml
|
|
requests
|
|
sentry-sdk
|
|
setproctitle
|
|
# setuptools is necessary since pkg_resources is required at runtime.
|
|
setuptools
|
|
]
|
|
++ lib.optionals (pythonOlder "3.10") [
|
|
eval-type-backport
|
|
]
|
|
++ lib.optionals (pythonOlder "3.12") [
|
|
typing-extensions
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
azure-core
|
|
azure-containerregistry
|
|
azure-identity
|
|
azure-storage-blob
|
|
boto3
|
|
bokeh
|
|
coverage
|
|
flask
|
|
google-cloud-artifact-registry
|
|
google-cloud-compute
|
|
google-cloud-storage
|
|
hypothesis
|
|
jsonschema
|
|
kubernetes
|
|
kubernetes-asyncio
|
|
matplotlib
|
|
moviepy
|
|
pandas
|
|
parameterized
|
|
pillow
|
|
plotly
|
|
pyfakefs
|
|
pyte
|
|
pytest-asyncio
|
|
pytest-cov-stub
|
|
pytest-mock
|
|
pytest-timeout
|
|
pytest-xdist
|
|
rdkit
|
|
responses
|
|
scikit-learn
|
|
soundfile
|
|
tenacity
|
|
torch
|
|
torchvision
|
|
tqdm
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
# test_matplotlib_image_with_multiple_axes may take >60s
|
|
pytestFlags = [
|
|
"--timeout=1024"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Require docker access
|
|
"tests/system_tests"
|
|
|
|
# broke somewhere between sentry-sdk 2.15.0 and 2.22.0
|
|
"tests/unit_tests/test_analytics/test_sentry.py"
|
|
|
|
# Server connection times out under load
|
|
"tests/unit_tests/test_wandb_login.py"
|
|
|
|
# PermissionError: unable to write to .cache/wandb/artifacts
|
|
"tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
|
|
];
|
|
|
|
disabledTests =
|
|
[
|
|
# Probably failing because of lack of internet access
|
|
# AttributeError: module 'wandb.sdk.launch.registry' has no attribute 'azure_container_registry'. Did you mean: 'elastic_container_registry'?
|
|
"test_registry_from_uri"
|
|
|
|
# Require docker
|
|
"test_get_requirements_section_pyproject"
|
|
"test_local_custom_env"
|
|
"test_local_custom_port"
|
|
"test_local_default"
|
|
|
|
# Expects python binary to be named `python3` but nix provides `python3.12`
|
|
# AssertionError: assert ['python3.12', 'main.py'] == ['python3', 'main.py']
|
|
"test_get_entrypoint"
|
|
|
|
# Require internet access
|
|
"test_audio_refs"
|
|
"test_bind_image"
|
|
"test_check_cors_configuration"
|
|
"test_check_wandb_version"
|
|
"test_from_path_project_type"
|
|
"test_image_accepts_bounding_boxes"
|
|
"test_image_accepts_bounding_boxes_optional_args"
|
|
"test_image_accepts_masks"
|
|
"test_image_accepts_masks_without_class_labels"
|
|
"test_image_seq_to_json"
|
|
"test_max_images"
|
|
"test_media_keys_escaped_as_glob_for_publish"
|
|
"test_parse_path"
|
|
"test_parse_project_path"
|
|
"test_translates_azure_err_to_normal_err"
|
|
|
|
# tests assertion if filesystem is compressed
|
|
"test_artifact_file_cache_cleanup"
|
|
|
|
# Tries to access a storage disk but there are none in the sandbox
|
|
# psutil.test_disk_out() returns None
|
|
"test_disk_in"
|
|
"test_disk_out"
|
|
|
|
# AssertionError: assert is_available('http://localhost:9400/metrics')
|
|
"test_dcgm"
|
|
|
|
# Error in the moviepy package:
|
|
# TypeError: must be real number, not NoneType
|
|
"test_video_numpy_mp4"
|
|
|
|
# AssertionError: assert not _IS_INTERNAL_PROCESS
|
|
"test_disabled_can_pickle"
|
|
"test_disabled_context_manager"
|
|
"test_mode_disabled"
|
|
|
|
# AssertionError: "one of name or plugin needs to be specified"
|
|
"test_opener_works_across_filesystem_boundaries"
|
|
"test_md5_file_hashes_on_mounted_filesystem"
|
|
|
|
# AttributeError: 'bytes' object has no attribute 'read'
|
|
"test_rewinds_on_failure"
|
|
"test_smoke"
|
|
"test_handles_multiple_calls"
|
|
|
|
# wandb.sdk.launch.errors.LaunchError: Found invalid name for agent MagicMock
|
|
"test_monitor_preempted"
|
|
"test_monitor_failed"
|
|
"test_monitor_running"
|
|
"test_monitor_job_deleted"
|
|
|
|
# Timeout >1024.0s
|
|
"test_log_media_prefixed_with_multiple_slashes"
|
|
"test_log_media_saves_to_run_directory"
|
|
"test_log_media_with_path_traversal"
|
|
|
|
# HandleAbandonedError / SystemExit when run in sandbox
|
|
"test_makedirs_raises_oserror__uses_temp_dir"
|
|
|
|
# AssertionError: Not all requests have been executed
|
|
"test_image_refs"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# AssertionError: assert not copy2_mock.called
|
|
"test_copy_or_overwrite_changed_no_copy"
|
|
|
|
# Fatal Python error: Aborted
|
|
"test_convert_plots"
|
|
"test_gpu_apple"
|
|
"test_image_from_matplotlib_with_image"
|
|
"test_make_plot_media_from_matplotlib_with_image"
|
|
"test_make_plot_media_from_matplotlib_without_image"
|
|
"test_matplotlib_contains_images"
|
|
"test_matplotlib_image"
|
|
"test_matplotlib_plotly_with_multiple_axes"
|
|
"test_matplotlib_to_plotly"
|
|
"test_plotly_from_matplotlib_with_image"
|
|
|
|
# RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1]
|
|
"test_wandb_image_with_matplotlib_figure"
|
|
];
|
|
|
|
pythonImportsCheck = [ "wandb" ];
|
|
|
|
meta = {
|
|
description = "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 = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ samuela ];
|
|
broken = gpu-stats.meta.broken || wandb-core.meta.broken;
|
|
};
|
|
}
|