talloc: remove python2 as a build dependency

This makes sure waf, which is used to build talloc, is ran
with python3 rather than python2.

(another option would be to make this the default for
wafHook, see https://github.com/NixOS/nixpkgs/pull/104701)
This commit is contained in:
Arnout Engelen 2020-12-11 10:43:00 +01:00
parent e9158eca70
commit 7f4bc12f13
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA

View file

@ -16165,7 +16165,9 @@ in
taglib-sharp = callPackage ../development/libraries/taglib-sharp { };
talloc = callPackage ../development/libraries/talloc { };
talloc = callPackage ../development/libraries/talloc {
wafHook = wafHook.override { python = python3; };
};
tclap = callPackage ../development/libraries/tclap {};