1 { lib, buildPythonPackage, pythonOlder, fetchPypi
11 buildPythonPackage rec {
17 inherit pname version;
18 sha256 = "eafd4ced27ca5dc370881d4358d1ab5041b32d88d31af8e3c24167fe4af64ed6";
21 propagatedBuildInputs = [
23 black # yes, this is in install_requires
27 ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
33 description = "An advanced Python REPL";
34 homepage = "https://github.com/prompt-toolkit/ptpython";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ mlieberman85 ];