nixpkgs/pkgs/development/python-modules/yappi/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

46 lines
806 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, gevent
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "yappi";
version = "1.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sumerc";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-AogBnqhLcwsyTHLP+Uxc+EOgYzhdwX5rbi9RMCuC2IU=";
};
patches = [
./tests.patch
];
nativeCheckInputs = [
gevent
];
checkPhase = ''
${python.interpreter} run_tests.py
'';
pythonImportsCheck = [
"yappi"
];
meta = with lib; {
description = "Python profiler that supports multithreading and measuring CPU time";
homepage = "https://github.com/sumerc/yappi";
license = licenses.mit;
maintainers = with maintainers; [ orivej ];
};
}