3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/line_profiler/default.nix
2022-07-25 12:55:09 +02:00

61 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cython
, isPyPy
, ipython
, python
, scikit-build
, cmake
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "line-profiler";
version = "3.5.1";
disabled = pythonOlder "3.6" || isPyPy;
src = fetchPypi {
pname = "line_profiler";
inherit version;
sha256 = "sha256-d0ACCL+9XUNBk4qaOk+1GU9a9/wjstSWyRN1X4MQ6Lg=";
};
nativeBuildInputs = [
cython
cmake
scikit-build
];
propagatedBuildInputs = [
ipython
];
checkInputs = [
pytestCheckHook
];
dontUseCmakeConfigure = true;
preBuild = ''
rm -f _line_profiler.c
'';
checkPhase = ''
PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH cd tests && ${python.interpreter} -m unittest discover -s .
'';
pythonImportsCheck = [
"line_profiler"
];
meta = with lib; {
description = "Line-by-line profiler";
homepage = "https://github.com/pyutils/line_profiler";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}