nixpkgs/pkgs/development/python-modules/line_profiler/default.nix
Orivej Desh 161927b1b1 python: line_profiler: fix build with Python 3.7
_line_profiler.c has to be regenerated by Cython.

I did not use fetchpatch because this patch does not have a stable source.
2019-07-14 19:03:11 +00:00

42 lines
745 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cython
, isPyPy
, ipython
, python
}:
buildPythonPackage rec {
pname = "line_profiler";
version = "2.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "efa66e9e3045aa7cb1dd4bf0106e07dec9f80bc781a993fbaf8162a36c20af5c";
};
patches = [ ./python37.patch ];
buildInputs = [ cython ];
propagatedBuildInputs = [ ipython ];
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 ];
};
}