summary refs log tree commit diff
path: root/pkgs/development/python-modules/bpython
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-10-31 16:38:19 +0100
committerJon <jonringer@users.noreply.github.com>2019-10-31 10:38:37 -0700
commite3907717cc7dce19037f9544be499374b07ca798 (patch)
treec436b7e09e2ff3c3aee56c6c37c6031504665010 /pkgs/development/python-modules/bpython
parent62fbcea807032df1b8ae4861c8904e760db6fbe5 (diff)
downloadnixpkgs-e3907717cc7dce19037f9544be499374b07ca798.tar
nixpkgs-e3907717cc7dce19037f9544be499374b07ca798.tar.gz
nixpkgs-e3907717cc7dce19037f9544be499374b07ca798.tar.bz2
nixpkgs-e3907717cc7dce19037f9544be499374b07ca798.tar.lz
nixpkgs-e3907717cc7dce19037f9544be499374b07ca798.tar.xz
nixpkgs-e3907717cc7dce19037f9544be499374b07ca798.tar.zst
nixpkgs-e3907717cc7dce19037f9544be499374b07ca798.zip
bpython: fix build
aeb63f40dd11157dc41f1f773abafe6f2666ac16 bumped bpython to 0.18, but it
failed to build afterwards, due to the .desktop file being renamed.
Diffstat (limited to 'pkgs/development/python-modules/bpython')
-rw-r--r--pkgs/development/python-modules/bpython/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/bpython/default.nix b/pkgs/development/python-modules/bpython/default.nix
index a828b00822c..a91be0e13dd 100644
--- a/pkgs/development/python-modules/bpython/default.nix
+++ b/pkgs/development/python-modules/bpython/default.nix
@@ -12,7 +12,7 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ curtsies greenlet pygments requests urwid ];
 
   postInstall = ''
-    substituteInPlace "$out/share/applications/bpython.desktop" \
+    substituteInPlace "$out/share/applications/org.bpython-interpreter.bpython.desktop" \
       --replace "Exec=/usr/bin/bpython" "Exec=$out/bin/bpython"
   '';