buku: python3 as parameter instead of python

This commit is contained in:
Frederik Rietdijk 2017-08-25 18:39:14 +02:00
parent 5c46301744
commit 61da59858c
2 changed files with 3 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{ stdenv, pythonPackages, fetchFromGitHub }:
{ stdenv, python3, fetchFromGitHub }:
with pythonPackages; buildPythonApplication rec {
with python3.pkgs; buildPythonApplication rec {
version = "3.0"; # When updating to 3.1, make sure to remove the marked line in preCheck
name = "buku-${version}";

View file

@ -1268,9 +1268,7 @@ with pkgs;
burp = callPackage ../tools/backup/burp { };
buku = callPackage ../applications/misc/buku {
pythonPackages = python3Packages;
};
buku = callPackage ../applications/misc/buku { };
byzanz = callPackage ../applications/video/byzanz {};