summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cython/default.nix
blob: 796df1cad647b37c529577daf9a2f54d596ff35a (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  gdb,
  ncurses,
  numpy,
  pkg-config,
  pygame-ce,
  python,
  sage, # Reverse dependency
  setuptools,
  stdenv,
}:

buildPythonPackage rec {
  pname = "cython";
  version = "3.1.6";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "cython";
    repo = "cython";
    tag = version;
    hash = "sha256-OB9DsGabbn5pE+8Ru29D3Jp9Wu+gwlHYYy79x+M+HPI=";
  };

  build-system = [
    setuptools
  ];

  nativeBuildInputs = [
    pkg-config
  ];

  nativeCheckInputs = [
    gdb
    numpy
    ncurses
  ];

  # https://github.com/cython/cython/issues/2785
  # Temporary solution
  doCheck = false;

  strictDeps = true;

  checkPhase =
    let
      excludedTests = [
        "reimport_from_subinterpreter"
      ]
      # cython's testsuite is not working very well with libc++
      # We are however optimistic about things outside of testsuite still working
      ++ lib.optionals (stdenv.cc.isClang or false) [
        "cpdef_extern_func"
        "libcpp_algo"
      ]
      # Some tests in the test suite aren't working on aarch64.
      # Disable them for now until upstream finds a workaround.
      # Upstream issue: https://github.com/cython/cython/issues/2308
      ++ lib.optionals stdenv.hostPlatform.isAarch64 [ "numpy_memoryview" ]
      ++ lib.optionals stdenv.hostPlatform.isi686 [
        "future_division"
        "overflow_check_longlong"
      ];
      commandline = builtins.concatStringsSep " " (
        [
          "-j$NIX_BUILD_CORES"
          "--no-code-style"
        ]
        ++ lib.optionals (builtins.length excludedTests != 0) [
          ''--exclude="(${builtins.concatStringsSep "|" excludedTests})"''
        ]
      );
    in
    ''
      runHook preCheck
      export HOME="$NIX_BUILD_TOP"
      ${python.interpreter} runtests.py ${commandline}
      runHook postCheck
    '';

  passthru.tests = {
    inherit pygame-ce sage;
  };

  # Force code regeneration in source distributions
  # https://github.com/cython/cython/issues/5089
  setupHook = ./setup-hook.sh;

  meta = {
    homepage = "https://cython.org";
    description = "Optimising static compiler for both the Python and the extended Cython programming languages";
    longDescription = ''
      Cython is an optimising static compiler for both the Python programming
      language and the extended Cython programming language (based on Pyrex). It
      makes writing C extensions for Python as easy as Python itself.

      Cython gives you the combined power of Python and C to let you:

      - write Python code that calls back and forth from and to C or C++ code
        natively at any point.
      - easily tune readable Python code into plain C performance by adding
        static type declarations, also in Python syntax.
      - use combined source code level debugging to find bugs in your Python,
        Cython and C code.
      - interact efficiently with large data sets, e.g. using multi-dimensional
        NumPy arrays.
      - quickly build your applications within the large, mature and widely used
        CPython ecosystem.
      - integrate natively with existing code and data from legacy, low-level or
        high-performance libraries and applications.

      The Cython language is a superset of the Python language that additionally
      supports calling C functions and declaring C types on variables and class
      attributes. This allows the compiler to generate very efficient C code
      from Cython code.
    '';
    changelog = "https://github.com/cython/cython/blob/${version}/CHANGES.rst";
    license = lib.licenses.asl20;
    mainProgram = "cython";
    maintainers = [ ];
  };
}
# TODO: investigate recursive loop when doCheck is true