mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
fsspec,
|
|
lightning-utilities,
|
|
numpy,
|
|
packaging,
|
|
pyyaml,
|
|
torch,
|
|
torchmetrics,
|
|
tqdm,
|
|
traitlets,
|
|
|
|
# tests
|
|
psutil,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "pytorch-lightning";
|
|
version = "2.6.4";
|
|
pyproject = true;
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lightning-AI";
|
|
repo = "pytorch-lightning";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-Qysnr76OCO9eZzhQW5EoGT2hUAYGw/qY+j6dF8XCXC4=";
|
|
};
|
|
|
|
env.PACKAGE_NAME = "pytorch";
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
fsspec
|
|
lightning-utilities
|
|
numpy
|
|
packaging
|
|
pyyaml
|
|
torch
|
|
torchmetrics
|
|
tqdm
|
|
traitlets
|
|
]
|
|
++ fsspec.optional-dependencies.http;
|
|
|
|
nativeCheckInputs = [
|
|
psutil
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Some packages are not in NixPkgs; other tests try to build distributed
|
|
# models, which doesn't work in the sandbox.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pytorch_lightning" ];
|
|
|
|
meta = {
|
|
description = "Lightweight PyTorch wrapper for machine learning researchers";
|
|
homepage = "https://github.com/Lightning-AI/pytorch-lightning";
|
|
changelog = "https://github.com/Lightning-AI/pytorch-lightning/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
})
|