buku: python3 as parameter instead of python
This commit is contained in:
parent
5c46301744
commit
61da59858c
|
@ -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}";
|
||||
|
||||
|
|
|
@ -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 {};
|
||||
|
||||
|
|
Loading…
Reference in New Issue