12 buildPythonPackage rec {
13 pname = "line_profiler";
17 inherit pname version;
18 sha256 = "e73ff429236d59d48ce7028484becfa01449b3d52abdcf7337e0ff2acdc5093c";
27 dontUseCmakeConfigure = true;
29 propagatedBuildInputs = [
36 rm -f _line_profiler.c
44 PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH cd tests && ${python.interpreter} -m unittest discover -s .
48 description = "Line-by-line profiler";
49 homepage = "https://github.com/rkern/line_profiler";
50 license = lib.licenses.bsd3;
51 maintainers = with lib.maintainers; [ fridh ];