summary refs log tree commit diff
path: root/pkgs/development/python-modules/ignite/default.nix
blob: 1ded86af3fb2f4902179c61a030420708a82a43e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, mock
, pytorch
, pynvml
, scikitlearn
, tqdm
}:

buildPythonPackage rec {
  pname = "ignite";
  version = "0.2.1";

  src = fetchFromGitHub {
    owner = "pytorch";
    repo = pname;
    rev = "v${version}";
    sha256 = "15k6dd11yxn4923llcpmw4srl1by5ljhh7aw5pnkn4n4qpywh6cm";
  };

  checkInputs = [ pytest mock ];

  checkPhase = ''
    pytest -k 'not visdom and not tensorboard and not mlflow and not polyaxon' tests/
  '';
  # these packages are not currently in nixpkgs

  propagatedBuildInputs = [ pytorch scikitlearn tqdm pynvml ];

  meta = with lib; {
    description = "High-level training library for PyTorch";
    homepage = https://pytorch.org/ignite;
    license = licenses.bsd3;
    maintainers = [ maintainers.bcdarwin ];
  };
}