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

46 lines
1.0 KiB
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib
2020-06-03 22:09:54 +02:00
, buildPythonPackage
, fetchPypi
, curtsies
, greenlet
, mock
, pygments
, requests
, substituteAll
, urwid
, which }:
2017-10-29 11:21:40 +01:00
buildPythonPackage rec {
pname = "bpython";
2020-11-14 20:22:07 +00:00
version = "0.20.1";
2017-10-29 11:21:40 +01:00
2018-01-21 22:02:05 +01:00
src = fetchPypi {
inherit pname version;
2020-11-14 20:22:07 +00:00
sha256 = "6e7738806013b469be57b0117082b9c4557ed7c92c70ceb79f96d674d89c7503";
2017-10-29 11:21:40 +01:00
};
2020-06-03 22:09:54 +02:00
patches = [ (substituteAll {
src = ./clipboard-make-which-substitutable.patch;
which = "${which}/bin/which";
})];
2017-10-29 11:21:40 +01:00
propagatedBuildInputs = [ curtsies greenlet pygments requests urwid ];
postInstall = ''
2019-10-31 16:38:19 +01:00
substituteInPlace "$out/share/applications/org.bpython-interpreter.bpython.desktop" \
--replace "Exec=/usr/bin/bpython" "Exec=$out/bin/bpython"
'';
2017-10-29 11:21:40 +01:00
checkInputs = [ mock ];
# tests fail: https://github.com/bpython/bpython/issues/712
doCheck = false;
meta = with lib; {
2017-10-29 11:21:40 +01:00
description = "A fancy curses interface to the Python interactive interpreter";
homepage = "https://bpython-interpreter.org/";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}