b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
52 lines
1 KiB
Nix
52 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, future
|
|
, fsspec
|
|
, packaging
|
|
, pytestCheckHook
|
|
, torch
|
|
, pyyaml
|
|
, tensorboard
|
|
, torchmetrics
|
|
, tqdm }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytorch-lightning";
|
|
version = "1.6.5";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PyTorchLightning";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-CgD5g5nhz2DI4gOQyPl8/Cq6wWHzL0ALgOB5SgUOgaI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
packaging
|
|
future
|
|
fsspec
|
|
torch
|
|
pyyaml
|
|
tensorboard
|
|
torchmetrics
|
|
tqdm
|
|
];
|
|
|
|
checkInputs = [ 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 = with lib; {
|
|
description = "Lightweight PyTorch wrapper for machine learning researchers";
|
|
homepage = "https://pytorch-lightning.readthedocs.io";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ tbenst ];
|
|
};
|
|
}
|