bpython: substituteAll the path to which

This is used to detect the presence of xclip and other clipboard
handling tools.

Fixes https://github.com/NixOS/nixpkgs/issues/56941.
This commit is contained in:
Florian Klink
2020-06-03 22:09:54 +02:00
parent b084cf2d30
commit 7de3d934da
2 changed files with 43 additions and 1 deletions

View File

@@ -1,4 +1,14 @@
{ stdenv, buildPythonPackage, fetchPypi, pygments, greenlet, curtsies, urwid, requests, mock }:
{ stdenv
, buildPythonPackage
, fetchPypi
, curtsies
, greenlet
, mock
, pygments
, requests
, substituteAll
, urwid
, which }:
buildPythonPackage rec {
pname = "bpython";
@@ -9,6 +19,11 @@ buildPythonPackage rec {
sha256 = "1764ikgj24jjq46s50apwkydqvy5a13adb2nbszk8kbci6df0v27";
};
patches = [ (substituteAll {
src = ./clipboard-make-which-substitutable.patch;
which = "${which}/bin/which";
})];
propagatedBuildInputs = [ curtsies greenlet pygments requests urwid ];
postInstall = ''