about summary refs log tree commit diff
path: root/pkgs/development/python-modules/batchgenerators/default.nix
blob: 001c3cc19a5efd1a5562b61091873c5a000a1384 (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
, isPy27
, fetchPypi
, pytest
, unittest2
, future
, numpy
, scipy
, scikitlearn
, scikitimage
, threadpoolctl
}:


buildPythonPackage rec {
  pname = "batchgenerators";
  version = "0.19.7";

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0qqzwqf5r0q6jh8avz4f9kf8x96crvdnkznhf24pbm0faf8yk67q";
  };

  propagatedBuildInputs = [ future numpy scipy scikitlearn scikitimage threadpoolctl ];
  checkInputs = [ pytest unittest2 ];

  checkPhase = "pytest tests";

  meta = {
    description = "2D and 3D image data augmentation for deep learning";
    homepage = "https://github.com/MIC-DKFZ/batchgenerators";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ bcdarwin ];
  };
}