sabnzbd: use python2

because dependency cheetah is python2 only.
This commit is contained in:
Frederik Rietdijk 2016-10-18 17:38:06 +02:00
parent 43949f4e0a
commit 216a906ed1

View file

@ -1,7 +1,7 @@
{stdenv, fetchurl, python, par2cmdline, unzip, unrar, p7zip, makeWrapper}:
{stdenv, fetchurl, python2, par2cmdline, unzip, unrar, p7zip, makeWrapper}:
let
pythonEnv = python.withPackages(ps: with ps; [ pyopenssl cheetah]);
pythonEnv = python2.withPackages(ps: with ps; [ pyopenssl cheetah]);
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
version = "1.1.0";