bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
57 lines
1 KiB
Nix
57 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
fastprogress,
|
|
fastcore,
|
|
fastdownload,
|
|
torch,
|
|
torchvision,
|
|
matplotlib,
|
|
pillow,
|
|
scikit-learn,
|
|
scipy,
|
|
spacy,
|
|
pandas,
|
|
requests,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fastai";
|
|
version = "2.7.15";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-8swg/RjN9exzjMVtKdVN51iH1IrRX501z1DDjTqFaSM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
fastprogress
|
|
fastcore
|
|
fastdownload
|
|
torchvision
|
|
matplotlib
|
|
pillow
|
|
scikit-learn
|
|
scipy
|
|
spacy
|
|
pandas
|
|
requests
|
|
];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "fastai" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/fastai/fastai";
|
|
description = "Fastai deep learning library";
|
|
mainProgram = "configure_accelerate";
|
|
changelog = "https://github.com/fastai/fastai/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rxiao ];
|
|
};
|
|
}
|