depot/third_party/nixpkgs/pkgs/development/python-modules/pyperf/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

52 lines
903 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, psutil
, unittestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "pyperf";
version = "2.6.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-l1L+dJwh5GClZLs/Uvwxm4ksYu5hxROLSpu/lK0nVeY=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
psutil
];
nativeCheckInputs = [
unittestCheckHook
];
unittestFlagsArray = [
"-s"
"pyperf/tests/"
"-v"
];
pythonImportsCheck = [
"pyperf"
];
meta = with lib; {
description = "Python module to generate and modify perf";
mainProgram = "pyperf";
homepage = "https://pyperf.readthedocs.io/";
changelog = "https://github.com/psf/pyperf/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}