about summary refs log tree commit diff
path: root/pkgs/development/python-modules/reportengine/default.nix
blob: 3eb6cf2a869c624fef4d34ea180c5f4f931d1b78 (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
51
52
53
54
55
56
{ lib
, buildPythonPackage
, fetchPypi
, flit
, jinja2
, ruamel-yaml
, matplotlib
, pandas
, pandoc
, pygments
, blessings
, curio
, hypothesis
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "reportengine";
  version = "0.31";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-jrt+ml8o1PUidV1bY0hCyNgcPaVTBloW574/i5Pl7iE=";
  };

  nativeBuildInputs = [ flit ];

  propagatedBuildInputs = [
    jinja2
    ruamel-yaml
    matplotlib
    pandas
    pygments
    blessings
    curio
  ];

  nativeCheckInputs = [
    hypothesis
    pandoc
    pytestCheckHook
  ];

  pythonImportsCheck = [ "reportengine" ];

  meta = with lib; {
    description = "A framework for declarative data analysis";
    homepage = "https://github.com/NNPDF/reportengine/";
    license = with licenses; [ gpl2Only ];
    maintainers = with maintainers; [ veprbl ];
    # Incompatibility with ruamel >= 0.18
    # https://github.com/NNPDF/reportengine/issues/60
    broken = versionAtLeast ruamel-yaml.version "0.18";
  };
}