diff --git a/pkgs/development/python-modules/perfplot/default.nix b/pkgs/development/python-modules/perfplot/default.nix index faa65e22e387..96fa5309a81d 100644 --- a/pkgs/development/python-modules/perfplot/default.nix +++ b/pkgs/development/python-modules/perfplot/default.nix @@ -14,6 +14,7 @@ buildPythonPackage rec { pname = "perfplot"; version = "0.10.2"; format = "pyproject"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { @@ -38,11 +39,14 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ "perfplot" ]; + pythonImportsCheck = [ + "perfplot" + ]; meta = with lib; { description = "Performance plots for Python code snippets"; homepage = "https://github.com/nschloe/perfplot"; + changelog = "https://github.com/nschloe/perfplot/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ costrouc ]; };