Files
nixpkgs/pkgs/development/python-modules/fairscale/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

77 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
# build inputs
torch,
numpy,
ninja,
# check inputs
pytestCheckHook,
parameterized,
pytest-cov-stub,
pytest-timeout,
remote-pdb,
}:
let
pname = "fairscale";
version = "0.4.13";
in
buildPythonPackage {
inherit pname version;
format = "pyproject";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "facebookresearch";
repo = "fairscale";
tag = "v${version}";
hash = "sha256-L2Rl/qL6l0OLAofygzJBGQdp/2ZrgDFarwZRjyAR3dw=";
};
# setup.py depends on ninja python dependency, but we have the binary in nixpkgs
postPatch = ''
substituteInPlace setup.py \
--replace 'setup_requires=["ninja"]' 'setup_requires=[]'
'';
nativeBuildInputs = [
ninja
setuptools
];
propagatedBuildInputs = [
torch
numpy
];
nativeCheckInputs = [
pytestCheckHook
parameterized
pytest-cov-stub
pytest-timeout
remote-pdb
];
# Some tests try to build distributed models, which doesn't work in the sandbox.
doCheck = false;
pythonImportsCheck = [ "fairscale" ];
meta = {
description = "PyTorch extensions for high performance and large scale training";
mainProgram = "wgit";
homepage = "https://github.com/facebookresearch/fairscale";
changelog = "https://github.com/facebookresearch/fairscale/releases/tag/v${version}";
license = with lib.licenses; [
mit
asl20
bsd3
];
maintainers = with lib.maintainers; [ happysalada ];
};
}