depot/third_party/nixpkgs/pkgs/development/python-modules/vprof/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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";
};
}