nixpkgs/pkgs/development/python-modules/bpython/default.nix

54 lines
1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, curtsies
, greenlet
2021-04-27 17:55:00 +00:00
, jedi
, pygments
2021-04-27 17:55:00 +00:00
, pyxdg
, requests
, substituteAll
, urwid
2021-04-27 17:55:00 +00:00
, watchdog
, which
}:
2017-10-29 10:21:40 +00:00
buildPythonPackage rec {
pname = "bpython";
version = "0.21";
2017-10-29 10:21:40 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "88aa9b89974f6a7726499a2608fa7ded216d84c69e78114ab2ef996a45709487";
2017-10-29 10:21:40 +00:00
};
patches = [ (substituteAll {
src = ./clipboard-make-which-substitutable.patch;
which = "${which}/bin/which";
})];
2021-04-27 17:55:00 +00:00
propagatedBuildInputs = [
curtsies
greenlet
pygments
pyxdg
requests
urwid
];
2017-10-29 10:21:40 +00:00
postInstall = ''
substituteInPlace "$out/share/applications/org.bpython-interpreter.bpython.desktop" \
--replace "Exec=/usr/bin/bpython" "Exec=$out/bin/bpython"
'';
2021-04-27 17:55:00 +00:00
checkInputs = [ jedi watchdog ];
pythonImportsCheck = [ "bpython" ];
2017-10-29 10:21:40 +00:00
meta = with lib; {
2017-10-29 10:21:40 +00:00
description = "A fancy curses interface to the Python interactive interpreter";
homepage = "https://bpython-interpreter.org/";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}