summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-09-25 23:52:22 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-09-25 23:52:22 +0200
commit9f8916e51986d7f6f6258a659ea57cb8653ee453 (patch)
treed61e29d2d88c45d805f725d5c51abe6c2545bca8
parentb23dbcca46ae0ab11a1e07a197b164e4ed1fb1d4 (diff)
downloadnixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.tar
nixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.tar.gz
nixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.tar.bz2
nixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.tar.lz
nixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.tar.xz
nixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.tar.zst
nixpkgs-9f8916e51986d7f6f6258a659ea57cb8653ee453.zip
jbrout: do not use top-level python packages
-rw-r--r--pkgs/applications/graphics/jbrout/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/jbrout/default.nix b/pkgs/applications/graphics/jbrout/default.nix
index 8d6c15129cb..c9587b222d9 100644
--- a/pkgs/applications/graphics/jbrout/default.nix
+++ b/pkgs/applications/graphics/jbrout/default.nix
@@ -1,6 +1,8 @@
-{ stdenv, fetchsvn, buildPythonApplication, python, pyGtkGlade, makeWrapper, pyexiv2,  pythonPackages, fbida, which }:
+{ stdenv, fetchsvn, pythonPackages, makeWrapper, fbida, which }:
 
-buildPythonApplication rec {
+let
+  inherit (pythonPackages) python;
+in pythonPackages.buildPythonApplication rec {
   name = "jbrout-${version}";
   version = "338";