about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/eolie
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-12-12 03:12:22 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-12-12 03:26:24 -0500
commitaf2caa441fa629d221da3c45d5067113de80e686 (patch)
tree07b19ff29a013ac66302ef0cd1bdef46e97fa4ac /pkgs/applications/networking/browsers/eolie
parent1933e8be0d7a34463a57d2f0acd1c94c053a3070 (diff)
downloadnixlib-af2caa441fa629d221da3c45d5067113de80e686.tar
nixlib-af2caa441fa629d221da3c45d5067113de80e686.tar.gz
nixlib-af2caa441fa629d221da3c45d5067113de80e686.tar.bz2
nixlib-af2caa441fa629d221da3c45d5067113de80e686.tar.lz
nixlib-af2caa441fa629d221da3c45d5067113de80e686.tar.xz
nixlib-af2caa441fa629d221da3c45d5067113de80e686.tar.zst
nixlib-af2caa441fa629d221da3c45d5067113de80e686.zip
eolie: don't use pythonPath
Diffstat (limited to 'pkgs/applications/networking/browsers/eolie')
-rw-r--r--pkgs/applications/networking/browsers/eolie/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/browsers/eolie/default.nix b/pkgs/applications/networking/browsers/eolie/default.nix
index 3e6b9fce6d09..80e0f4742ecd 100644
--- a/pkgs/applications/networking/browsers/eolie/default.nix
+++ b/pkgs/applications/networking/browsers/eolie/default.nix
@@ -4,7 +4,7 @@
 , gobject-introspection, wrapGAppsHook }:
 
 python3.pkgs.buildPythonApplication rec {
-  name = "eolie-${version}";
+  pname = "eolie";
   version = "0.9.45";
 
   format = "other";
@@ -39,7 +39,7 @@ python3.pkgs.buildPythonApplication rec {
     webkitgtk
   ];
 
-  pythonPath = with python3.pkgs; [
+  propagatedBuildInputs = with python3.pkgs; [
     beautifulsoup4
     pycairo
     pygobject3
@@ -53,9 +53,9 @@ python3.pkgs.buildPythonApplication rec {
 
   meta = with stdenv.lib; {
     description = "A new GNOME web browser";
-    homepage    = https://wiki.gnome.org/Apps/Eolie;
-    license     = licenses.gpl3Plus;
+    homepage = https://wiki.gnome.org/Apps/Eolie;
+    license  = licenses.gpl3Plus;
     maintainers = with maintainers; [ samdroid-apps worldofpeace ];
-    platforms   = platforms.linux;
+    platforms = platforms.linux;
   };
 }