about summary refs log tree commit diff
path: root/pkgs/development/python-modules/line_profiler/default.nix
blob: 8ff0f391f208e88010a5a0f9ad08458315a32205 (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
{ lib
, buildPythonPackage
, fetchPypi
, cython
, isPyPy
, ipython
, python
, scikit-build
}:

buildPythonPackage rec {
  pname = "line_profiler";
  version = "3.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7218ad6bd81f8649b211974bf108933910f016d66b49651effe7bbf63667d141";
  };

  nativeBuildInputs = [ cython ];

  propagatedBuildInputs = [ ipython scikit-build ];

  disabled = isPyPy;

  preBuild = ''
    rm -f _line_profiler.c
  '';

  checkPhase = ''
    ${python.interpreter} -m unittest discover -s tests
  '';

  meta = {
    description = "Line-by-line profiler";
    homepage = "https://github.com/rkern/line_profiler";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ fridh ];
    broken = true;
  };
}