pyload: fix build

This commit is contained in:
Jonathan Ringer 2019-08-02 09:03:55 -07:00 committed by Frederik Rietdijk
parent 6a22620c5b
commit 5304191cd7

View File

@ -45,16 +45,16 @@ in pythonPackages.buildPythonApplication rec {
''; '';
preBuild = '' preBuild = ''
paver generate_setup ${pythonPackages.paver}/bin/paver generate_setup
''; '';
doCheck = false; doCheck = false;
meta = { meta = with stdenv.lib; {
description = "Free and open source downloader for 1-click-hosting sites"; description = "Free and open source downloader for 1-click-hosting sites";
homepage = https://github.com/pyload/pyload; homepage = https://github.com/pyload/pyload;
license = stdenv.lib.licenses.gpl3; license = licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.mahe ]; maintainers = [ maintainers.mahe ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }