summaryrefslogtreecommitdiffstats
path: root/2configs
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
commitb7e7c652e29ec9b45aa2b0691fddf423bea1f6b3 (patch)
tree54428e1cba756bce9aeb5b36b8cf98f44356d8ec /2configs
parentf679758481211a633c141698d92a0c337469311c (diff)
ma sickbeard: use python37
Diffstat (limited to '2configs')
-rw-r--r--2configs/sickbeard/sickgear.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/2configs/sickbeard/sickgear.nix b/2configs/sickbeard/sickgear.nix
index 9746ee073..da984358c 100644
--- a/2configs/sickbeard/sickgear.nix
+++ b/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";