mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
curtsies,
|
|
cwcwidth,
|
|
greenlet,
|
|
jedi,
|
|
pygments,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyperclip,
|
|
pyxdg,
|
|
requests,
|
|
typing-extensions,
|
|
urwid,
|
|
watchdog,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bpython";
|
|
version = "0.24";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mHNv/XqMSP0r+1PYmKR19CQb3gtnISVwavBNnQj9Pb0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
curtsies
|
|
cwcwidth
|
|
greenlet
|
|
jedi
|
|
pygments
|
|
pyperclip
|
|
pyxdg
|
|
requests
|
|
typing-extensions
|
|
urwid
|
|
watchdog
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace "$out/share/applications/org.bpython-interpreter.bpython.desktop" \
|
|
--replace "Exec=/usr/bin/bpython" "Exec=$out/bin/bpython"
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "bpython" ];
|
|
|
|
disabledTests = [
|
|
# Check for syntax error ends with an AssertionError
|
|
"test_syntaxerror"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fancy curses interface to the Python interactive interpreter";
|
|
homepage = "https://bpython-interpreter.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
flokli
|
|
dotlambda
|
|
];
|
|
};
|
|
}
|