about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/slicedimage/default.nix
blob: 3b9aa19062be0f4c22993536dbf3e83b79ad1f2a (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
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, buildPythonPackage
, fetchPypi
, boto3
, diskcache
, enum34
, packaging
, pathlib
, numpy
, requests
, scikitimage
, six
, pytest
, isPy27
}:

buildPythonPackage rec {
  pname = "slicedimage";
  version = "3.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "adab09457e22465f05998fdcf8ea14179185f8e780a4021526ba163dd476cd02";
  };

  propagatedBuildInputs = [
    boto3
    diskcache
    packaging
    numpy
    requests
    scikitimage
    six
  ] ++ lib.optionals isPy27 [ pathlib enum34 ];

  checkInputs = [
    pytest
  ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    description = "Library to access sliced imaging data";
    homepage = https://github.com/spacetx/slicedimage;
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}