summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/nptyping/default.nix
blob: b82f21fb51d95f859cf9f1992ba2c753c1f4d96a (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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  beartype,
  invoke,
  numpy,
  pandas,
  feedparser,
}:

buildPythonPackage rec {
  pname = "nptyping";
  version = "2.5.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "ramonhagenaars";
    repo = "nptyping";
    tag = "v${version}";
    hash = "sha256-hz4YrcvARCAA7TXapmneIwle/F4pzcIYLPSmiFHC0VQ=";
  };

  patches = [
    ./numpy-2.0-compat.patch
  ];

  propagatedBuildInputs = [ numpy ];

  nativeCheckInputs = [
    beartype
    feedparser
    invoke
    pandas
    pytestCheckHook
  ];

  disabledTests = [
    # tries to download data
    "test_pandas_stubs_fork_is_synchronized"
  ];

  disabledTestPaths = [
    # missing pyright import:
    "tests/test_pyright.py"
    # can't find mypy stubs for pandas:
    "tests/test_mypy.py"
    "tests/pandas_/test_mypy_dataframe.py"
    # typeguard release broke nptyping compatibility:
    "tests/test_typeguard.py"
    # tries to build wheel of package, broken/unnecessary under Nix:
    "tests/test_wheel.py"
    # beartype fails a type check
    "tests/test_beartype.py"
    # broken by patch: https://github.com/ramonhagenaars/nptyping/pull/114#issuecomment-2605786199
    # can be removed when the patch is merged
    "tests/test_lib_export.py"
  ];

  pythonImportsCheck = [ "nptyping" ];

  meta = {
    description = "Type hints for numpy";
    homepage = "https://github.com/ramonhagenaars/nptyping";
    changelog = "https://github.com/ramonhagenaars/nptyping/blob/v${version}/HISTORY.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      bcdarwin
      pandapip1
    ];
  };
}