fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
41 lines
845 B
Nix
41 lines
845 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
wheel,
|
|
psutil,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vprof";
|
|
version = "0.38";
|
|
pyproject = true;
|
|
|
|
# We use the Pypi source rather than the GitHub ones because the former include the javascript
|
|
# dependency for the UI.
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fxAAkS7rekUMfJTTzJZzmvRa0P8B1avMCwmhddQP+ts=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [ psutil ];
|
|
|
|
pythonImportsCheck = [ "vprof" ];
|
|
|
|
# The tests are not included in the Pypi sources
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Visual profiler for Python";
|
|
homepage = "https://github.com/nvdv/vprof";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
mainProgram = "vprof";
|
|
};
|
|
}
|