Skip to content

Commit

Permalink
virtinst: use python2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Nov 8, 2016
1 parent e7f9195 commit a18ac15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/applications/virtualization/virtinst/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl }:
{ stdenv, fetchurl, python2Packages, intltool, libxml2Python, curl }:

with stdenv.lib;

Expand All @@ -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
Expand All @@ -22,9 +22,9 @@ stdenv.mkDerivation rec {
];

buildInputs =
[ pythonPackages.python
pythonPackages.wrapPython
pythonPackages.mox
[ python2Packages.python
python2Packages.wrapPython
python2Packages.mox
intltool
] ++ pythonPath;

Expand Down

0 comments on commit a18ac15

Please sign in to comment.