47 lines
911 B
Nix
47 lines
911 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
gevent,
|
||
|
python,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "yappi";
|
||
|
version = "1.6.4";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "sumerc";
|
||
|
repo = "yappi";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-3lGbFDu7sk83KrSHo6qZxHT2dxPWtT8yfXXQO1GbteU=";
|
||
|
};
|
||
|
|
||
|
patches = [ ./tests.patch ];
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
nativeCheckInputs = [ gevent ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
runHook preCheck
|
||
|
${python.interpreter} run_tests.py
|
||
|
runHook postCheck
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "yappi" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python profiler that supports multithreading and measuring CPU time";
|
||
|
mainProgram = "yappi";
|
||
|
homepage = "https://github.com/sumerc/yappi";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ orivej ];
|
||
|
};
|
||
|
}
|