My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/yappi/default.nix

45 lines
785 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, gevent
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "yappi";
version = "1.3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sumerc";
repo = pname;
rev = version;
hash = "sha256-XxUAYrDQAY7fD9yTSmoRUmWJEs+L6KSQ0/bIVf/o9ag=";
};
patches = [
./tests.patch
];
checkInputs = [
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 ];
};
}