Files
2025-11-03 12:41:44 +00:00

39 lines
605 B
Nix

{
buildPythonPackage,
# dependencies
pytorch-lightning,
# tests
psutil,
pytestCheckHook,
}:
buildPythonPackage {
pname = "lightning";
pyproject = true;
inherit (pytorch-lightning)
version
src
build-system
meta
;
dependencies = pytorch-lightning.dependencies ++ [ pytorch-lightning ];
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 = [
"lightning"
"lightning.pytorch"
];
}