summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/icontract/default.nix
blob: 4d5e681e21aa62d3c020be961120679e26e2637a (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
  lib,
  astor,
  asttokens,
  asyncstdlib,
  buildPythonPackage,
  deal,
  dpcontracts,
  fetchFromGitHub,
  numpy,
  pytestCheckHook,
  setuptools,
  typing-extensions,
}:

buildPythonPackage rec {
  pname = "icontract";
  version = "2.7.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Parquery";
    repo = "icontract";
    tag = "v${version}";
    hash = "sha256-FRfDcjylYGWwYPgCipzS+NZYCSPATlQdWtavTo/NZY0=";
  };

  preCheck = ''
    # we don't want to use the precommit.py script to build the package.
    # For the tests to succeed, "ICONTRACT_SLOW" needs to be set.
    # see https://github.com/Parquery/icontract/blob/aaeb1b06780a34b05743377e4cb2458780e808d3/precommit.py#L57
    export ICONTRACT_SLOW=1
  '';

  build-system = [ setuptools ];

  dependencies = [
    asttokens
    typing-extensions
  ];
  pythonRelaxDeps = [
    "asttokens"
  ];

  nativeCheckInputs = [
    astor
    asyncstdlib
    deal
    dpcontracts
    numpy
    pytestCheckHook
  ];

  disabledTests = [
    # AssertionError
    "test_abstract_method_not_implemented"
  ];

  disabledTestPaths = [
    # mypy decorator checks don't pass. For some reason mypy
    # doesn't check the python file provided in the test.
    "tests/test_mypy_decorators.py"
    # Those tests seems to simply re-run some typeguard tests
    "tests/test_typeguard.py"
  ];

  pytestFlags = [
    # RuntimeWarning: coroutine '*' was never awaited
    "-Wignore::RuntimeWarning"
  ];

  pythonImportsCheck = [ "icontract" ];

  meta = {
    description = "Provide design-by-contract with informative violation messages";
    homepage = "https://github.com/Parquery/icontract";
    changelog = "https://github.com/Parquery/icontract/blob/v${version}/CHANGELOG.rst";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      gador
      thiagokokada
    ];
  };
}