wiktionary: stay with python2

This commit is contained in:
Frederik Rietdijk 2021-03-25 12:14:44 +01:00
parent 842f0b4f65
commit 317384aa90
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, python, dict, glibcLocales }: { lib, stdenv, fetchurl, python2, dict, glibcLocales }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "20210201"; version = "20210201";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
}; };
convert = ./wiktionary2dict.py; convert = ./wiktionary2dict.py;
buildInputs = [ python dict glibcLocales ]; buildInputs = [ python2 dict glibcLocales ];
builder = ./builder.sh; builder = ./builder.sh;
passthru.updateScript = ./update.sh; passthru.updateScript = ./update.sh;