From 0b5beb71d988d4ee39bda95bee947c1c41b3c9df Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 27 Sep 2016 00:22:19 +0200 Subject: pkgs: Switch to pythonPackages.buildPythonPackage Since 771ed59b48bc1257439b4529426cc9047aebc27b, there is no top-level attribute anymore, so let's fix this. Signed-off-by: aszlig --- pkgs/games/humblebundle/fetch-humble-bundle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/games/humblebundle/fetch-humble-bundle/default.nix') diff --git a/pkgs/games/humblebundle/fetch-humble-bundle/default.nix b/pkgs/games/humblebundle/fetch-humble-bundle/default.nix index 50c1f3a3..a27138d8 100644 --- a/pkgs/games/humblebundle/fetch-humble-bundle/default.nix +++ b/pkgs/games/humblebundle/fetch-humble-bundle/default.nix @@ -1,5 +1,5 @@ { stdenv, curl, cacert, writeText, fetchFromGitHub, fetchpatch -, python, buildPythonPackage, pythonPackages +, python, pythonPackages , email, password }: @@ -7,7 +7,7 @@ { name ? null, machineName, downloadName ? "Download", suffix ? "humblebundle", md5 }: let cafile = "${cacert}/etc/ssl/certs/ca-bundle.crt"; - humbleAPI = buildPythonPackage rec { + humbleAPI = pythonPackages.buildPythonPackage rec { name = "humblebundle-${version}"; version = "0.1.1"; -- cgit 1.4.1