about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/virtinst/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-11-08 15:40:39 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-11-08 22:48:55 +0100
commita18ac150a3ee9383bc71e2e37469942915d3ec54 (patch)
treede5d474bb02666a93897af9dba4628da0a1a7e63 /pkgs/applications/virtualization/virtinst/default.nix
parente7f91951693f1214e822025a44dba51e68d8d474 (diff)
downloadnixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.tar
nixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.tar.gz
nixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.tar.bz2
nixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.tar.lz
nixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.tar.xz
nixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.tar.zst
nixlib-a18ac150a3ee9383bc71e2e37469942915d3ec54.zip
virtinst: use python2
Diffstat (limited to 'pkgs/applications/virtualization/virtinst/default.nix')
-rw-r--r--pkgs/applications/virtualization/virtinst/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/virtualization/virtinst/default.nix b/pkgs/applications/virtualization/virtinst/default.nix
index 04223d9a9e9d..75f90c234e83 100644
--- a/pkgs/applications/virtualization/virtinst/default.nix
+++ b/pkgs/applications/virtualization/virtinst/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl }:
+{ stdenv, fetchurl, python2Packages, intltool, libxml2Python, curl }:
 
 with stdenv.lib;
 
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     sha256 = "175laiy49dni8hzi0cn14bbsdsigvgr9h6d9z2bcvbpa29spldvf";
   };
 
-  pythonPath = with pythonPackages;
+  pythonPath = with python2Packages;
     [ setuptools eventlet greenlet gflags netaddr carrot routes
       PasteDeploy m2crypto ipy twisted
       distutils_extra simplejson glanceclient cheetah lockfile httplib2
@@ -22,9 +22,9 @@ stdenv.mkDerivation rec {
     ];
 
   buildInputs =
-    [ pythonPackages.python
-      pythonPackages.wrapPython
-      pythonPackages.mox
+    [ python2Packages.python
+      python2Packages.wrapPython
+      python2Packages.mox
       intltool
     ] ++ pythonPath;