python311Packages.objgraph: use pyproject = true

Changelog: https://github.com/mgedmin/objgraph/blob/3.6.1/CHANGES.rst
This commit is contained in:
Robert Schütz 2024-02-27 18:56:54 -08:00 committed by Weijia Wang
parent 67c89a3dfe
commit f85701a144

View File

@ -8,12 +8,13 @@
python,
pythonOlder,
substituteAll,
setuptools,
}:
buildPythonPackage rec {
pname = "objgraph";
version = "3.6.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7" || isPyPy;
@ -29,6 +30,10 @@ buildPythonPackage rec {
})
];
build-system = [
setuptools
];
passthru.optional-dependencies = {
ipython = [ graphviz ];
};