mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
51 lines
976 B
Nix
51 lines
976 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, appdirs
|
|
, black
|
|
, importlib-metadata
|
|
, isPy3k
|
|
, jedi
|
|
, prompt-toolkit
|
|
, pygments
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ptpython";
|
|
version = "3.0.22";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-wJezJEBgFKAFxrCfSTu73eVx5BI2CvK6FVGHOhDDbPg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
black # yes, this is in install_requires
|
|
jedi
|
|
prompt-toolkit
|
|
pygments
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
importlib-metadata
|
|
];
|
|
|
|
# no tests to run
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"ptpython"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An 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 ];
|
|
};
|
|
}
|