summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2020-11-18 21:08:48 +0100
committermakefu <github@syntax-fehler.de>2020-11-18 21:08:48 +0100
commit245e5f54226703dd60bc4f967b9e32e897140e84 (patch)
treeb378bfc84e9049aea635f6a8fcafe679c603dd01 /makefu
parent90a96f000e19ef1521f582d401e09a5eb4c33bd9 (diff)
ma sickbeard: use python37
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/sickbeard/sickgear.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefu/2configs/sickbeard/sickgear.nix b/makefu/2configs/sickbeard/sickgear.nix
index 9746ee07..da984358 100644
--- a/makefu/2configs/sickbeard/sickgear.nix
+++ b/makefu/2configs/sickbeard/sickgear.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchFromGitHub, python3, makeWrapper }:
+{ stdenv, fetchFromGitHub, python37, makeWrapper }:
let
- pythonEnv = python3.withPackages(ps: with ps; [
- (python3.pkgs.callPackage ./cheetah3.nix {})
+ pythonEnv = python37.withPackages(ps: with ps; [
+ (ps.callPackage ./cheetah3.nix {})
]);
in stdenv.mkDerivation rec {
pname = "sickgear";