Files
nixpkgs/pkgs/development/python-modules/ptpython/default.nix
Martin Weinelt 3ca4fa5764 python3Packages.ptpython: 3.0.29 -> 3.0.30
https://github.com/prompt-toolkit/ptpython/blob/3.0.30/CHANGELOG

This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:24 +02:00

47 lines
862 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
appdirs,
jedi,
prompt-toolkit,
pygments,
setuptools,
}:
buildPythonPackage rec {
pname = "ptpython";
version = "3.0.30";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-UaB/m46/hDWlqusigxzKSlLocCl3GiY33ydjx509h3Y=";
};
build-system = [ setuptools ];
dependencies = [
appdirs
jedi
prompt-toolkit
pygments
];
# no tests to run
doCheck = false;
pythonImportsCheck = [ "ptpython" ];
meta = with lib; {
description = "Advanced Python REPL";
homepage = "https://github.com/prompt-toolkit/ptpython";
changelog = "https://github.com/prompt-toolkit/ptpython/blob/${version}/CHANGELOG";
license = licenses.bsd3;
maintainers = with maintainers; [ mlieberman85 ];
};
}