summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/fvcore/default.nix
blob: f46ab0a4227a49ecacf5fa16c7e0abd4c55efbff (plain)
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
51
52
53
54
55
56
57
58
59
60
{
  lib,
  buildPythonPackage,
  fetchPypi,
  # build inputs
  numpy,
  yacs,
  pyyaml,
  tqdm,
  termcolor,
  pillow,
  tabulate,
  iopath,
  shapely,
  # check inputs
  torch,
}:
let
  pname = "fvcore";
  version = "0.1.5.post20221221";
  optional-dependencies = {
    all = [ shapely ];
  };
in
buildPythonPackage {
  inherit pname version;
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-8vsLuQVyrmUcEceOIEk+0ZsiQFUKfku7LW3oe90DeGA=";
  };

  propagatedBuildInputs = [
    numpy
    yacs
    pyyaml
    tqdm
    termcolor
    pillow
    tabulate
    iopath
  ];

  nativeCheckInputs = [ torch ];

  # TypeError: flop_count() missing 2 required positional arguments: 'model' and 'inputs'
  doCheck = false;

  pythonImportsCheck = [ "fvcore" ];

  optional-dependencies = optional-dependencies;

  meta = {
    description = "Collection of common code that's shared among different research projects in FAIR computer vision team";
    homepage = "https://github.com/facebookresearch/fvcore";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ happysalada ];
  };
}