python310Packages.gprof2dot: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-09-23 12:39:21 +02:00 committed by GitHub
parent 69e65647ea
commit 22d282736e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@
, buildPythonPackage
, python
, graphviz
, pythonOlder
}:
buildPythonPackage rec {
@ -10,6 +11,8 @@ buildPythonPackage rec {
version = "2022.07.29";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jrfonseca";
repo = "gprof2dot";