85a223610d
https://github.com/fastai/fastai/blob/2.8.6/CHANGELOG.md This commit was automatically generated using update-python-libraries.
54 lines
966 B
Nix
54 lines
966 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
fastprogress,
|
|
fastcore,
|
|
fastdownload,
|
|
torchvision,
|
|
matplotlib,
|
|
pillow,
|
|
scikit-learn,
|
|
scipy,
|
|
spacy,
|
|
pandas,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fastai";
|
|
version = "2.8.6";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-eZW96Upogr6qws6lD8eX2kywuBmTXsbG7vaQKLwx9y8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
fastprogress
|
|
fastcore
|
|
fastdownload
|
|
torchvision
|
|
matplotlib
|
|
pillow
|
|
scikit-learn
|
|
scipy
|
|
spacy
|
|
pandas
|
|
requests
|
|
];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "fastai" ];
|
|
|
|
meta = {
|
|
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 = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ rxiao ];
|
|
};
|
|
}
|