sickbeard: fix build

Use the `pythonEnv` provided by `buildInputs` rather than the one
provided by `buildPythonApplication`.
This commit is contained in:
rembo10 2019-02-17 13:31:23 +01:00
parent a44784e811
commit d35e3e7c91

View file

@ -2,8 +2,8 @@
let
pythonEnv = python2.withPackages(ps: with ps; [ cheetah ]);
in python2.pkgs.buildPythonApplication rec {
name = "sickbeard-${version}";
in stdenv.mkDerivation rec {
pname = "sickbeard";
version = "2016-03-21";
src = fetchFromGitHub {