nixpkgs/pkgs/development/python-modules/ignite/default.nix

64 lines
1.5 KiB
Nix
Raw Normal View History

2020-01-13 22:55:46 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pytest_xdist
, pythonOlder
2020-05-09 18:50:17 +02:00
, matplotlib
2020-01-13 22:55:46 +01:00
, mock
, pytorch
, pynvml
, scikitlearn
, tqdm
}:
buildPythonPackage rec {
pname = "ignite";
version = "0.4.2";
2020-01-13 22:55:46 +01:00
src = fetchFromGitHub {
owner = "pytorch";
repo = pname;
rev = "v${version}";
sha256 = "00vcmhnp14s54g386izgaxzrdr2nqv3pz9nvpyiwrn33zawr308z";
2020-01-13 22:55:46 +01:00
};
checkInputs = [ pytestCheckHook matplotlib mock pytest_xdist ];
2020-05-09 18:50:17 +02:00
propagatedBuildInputs = [ pytorch scikitlearn tqdm pynvml ];
2020-01-13 22:55:46 +01:00
# runs succesfully in 3.9, however, async isn't correctly closed so it will fail after test suite.
doCheck = pythonOlder "3.9";
2020-05-09 18:50:17 +02:00
# Some packages are not in NixPkgs; other tests try to build distributed
# models, which doesn't work in the sandbox.
# avoid tests which need special packages
pytestFlagsArray = [
"--ignore=tests/ignite/contrib/handlers/test_trains_logger.py"
"--ignore=tests/ignite/metrics/test_dill.py"
"--ignore=tests/ignite/metrics/test_ssim.py"
"tests/"
];
# disable tests which need specific packages
disabledTests = [
"idist"
"tensorboard"
"mlflow"
"trains"
"visdom"
"test_setup_neptune"
"test_output_handler" # needs mlflow
"test_integration"
"test_pbar" # slight output differences
"test_write_results"
"test_setup_plx"
];
2020-01-13 22:55:46 +01:00
meta = with lib; {
description = "High-level training library for PyTorch";
homepage = "https://pytorch.org/ignite";
2020-01-13 22:55:46 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.bcdarwin ];
};
}