mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
sabnzbd: use python2
because dependency cheetah is python2 only.
This commit is contained in:
parent
43949f4e0a
commit
216a906ed1
@ -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 New Issue
Block a user