14 buildPythonPackage rec {
17 format = "setuptools";
19 disabled = pythonOlder "3.7";
22 inherit pname version;
23 hash = "sha256-n8m+wsxRvEAAwSJNjFYkHOikBrPUnsjcJm94zTzQS6Q=";
26 propagatedBuildInputs = [
28 black # yes, this is in install_requires
32 ] ++ lib.optionals (pythonOlder "3.8") [
39 pythonImportsCheck = [
44 description = "An advanced Python REPL";
45 homepage = "https://github.com/prompt-toolkit/ptpython";
46 changelog = "https://github.com/prompt-toolkit/ptpython/blob/${version}/CHANGELOG";
47 license = licenses.bsd3;
48 maintainers = with maintainers; [ mlieberman85 ];