sabnzbd: use python2
because dependency cheetah is python2 only.
This commit is contained in:
parent
43949f4e0a
commit
216a906ed1
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue