summary refs log tree commit diff
path: root/pkgs/misc/flashfocus
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-03-21 18:24:14 +0100
committerGitHub <noreply@github.com>2021-03-21 18:24:14 +0100
commit827f213fb29c346c8977cc70c3adc164e349ae10 (patch)
tree81122215b9eb67d374306e31a324997bdc337876 /pkgs/misc/flashfocus
parentc82066e585bb59ea72a0ff842d66936711f57e4f (diff)
downloadnixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.tar
nixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.tar.gz
nixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.tar.bz2
nixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.tar.lz
nixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.tar.xz
nixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.tar.zst
nixpkgs-827f213fb29c346c8977cc70c3adc164e349ae10.zip
flashfocus: don't use python3Packages.callPackage (#117027)
Otherwise we can't override specific Python dependencies of it.
Diffstat (limited to 'pkgs/misc/flashfocus')
-rw-r--r--pkgs/misc/flashfocus/default.nix22
1 files changed, 16 insertions, 6 deletions
diff --git a/pkgs/misc/flashfocus/default.nix b/pkgs/misc/flashfocus/default.nix
index 98f368132a9..2b645817a7e 100644
--- a/pkgs/misc/flashfocus/default.nix
+++ b/pkgs/misc/flashfocus/default.nix
@@ -1,17 +1,27 @@
-{ lib, buildPythonApplication, fetchPypi, xcffib, pyyaml, click, i3ipc, marshmallow, cffi, xpybutil, pytestrunner }:
+{ lib, python3 }:
 
-
-buildPythonApplication rec {
+python3.pkgs.buildPythonApplication rec {
   pname = "flashfocus";
   version = "2.2.2";
 
-  src = fetchPypi {
+  src = python3.pkgs.fetchPypi {
     inherit pname version;
     sha256 = "1z20d596rnc7cs0rrd221gjn14dmbr11djv94y9p4v7rr788sswv";
   };
 
-  nativeBuildInputs = [ pytestrunner ];
-  propagatedBuildInputs = [ i3ipc xcffib click cffi xpybutil marshmallow pyyaml ];
+  nativeBuildInputs = with python3.pkgs; [
+    pytestrunner
+  ];
+
+  propagatedBuildInputs = with python3.pkgs; [
+    i3ipc
+    xcffib
+    click
+    cffi
+    xpybutil
+    marshmallow
+    pyyaml
+  ];
 
   # Tests require access to a X session
   doCheck = false;