Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

sickbeard: fix build

Use the `pythonEnv` provided by `buildInputs` rather than the one
provided by `buildPythonApplication`.

rembo10 d35e3e7c a44784e8

+2 -2
+2 -2
pkgs/servers/sickbeard/default.nix
··· 2 3 let 4 pythonEnv = python2.withPackages(ps: with ps; [ cheetah ]); 5 - in python2.pkgs.buildPythonApplication rec { 6 - name = "sickbeard-${version}"; 7 version = "2016-03-21"; 8 9 src = fetchFromGitHub {
··· 2 3 let 4 pythonEnv = python2.withPackages(ps: with ps; [ cheetah ]); 5 + in stdenv.mkDerivation rec { 6 + pname = "sickbeard"; 7 version = "2016-03-21"; 8 9 src = fetchFromGitHub {