ma sickbeard: use python37

This commit is contained in:
makefu 2020-11-18 21:08:48 +01:00
parent 90a96f000e
commit 245e5f5422
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, python3, makeWrapper }: { stdenv, fetchFromGitHub, python37, makeWrapper }:
let let
pythonEnv = python3.withPackages(ps: with ps; [ pythonEnv = python37.withPackages(ps: with ps; [
(python3.pkgs.callPackage ./cheetah3.nix {}) (ps.callPackage ./cheetah3.nix {})
]); ]);
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "sickgear"; pname = "sickgear";