python311Packages.pyinstrument: add format

This commit is contained in:
Fabian Affolter
2023-09-01 14:18:19 +02:00
committed by GitHub
parent ad966e7972
commit 024b3b075b
@@ -3,11 +3,14 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, wheel
}:
buildPythonPackage rec {
pname = "pyinstrument";
version = "4.5.2";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -18,6 +21,11 @@ buildPythonPackage rec {
hash = "sha256-VL/JzgMxn5zABfmol+5oofR1RjyxTdzvUi6JnwsSFao=";
};
nativeBuildInputs = [
setuptools
wheel
];
# Module import recursion
doCheck = false;