depot/third_party/nixpkgs/pkgs/development/python-modules/yappi/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

45 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 ];
};
}