mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
33afbf39f6
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.
46 lines
806 B
Nix
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 ];
|
|
};
|
|
}
|