release.nix: don't run tests to avoid import broken irc module

This commit is contained in:
Jörg Thalheim 2020-06-27 15:01:25 +01:00
parent 51cd7b59e9
commit f42616252e
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -9,6 +9,9 @@ python3Packages.buildPythonApplication {
# FIXME: uncomment after the next nixpkgs channel bump
#propagatedBuildInputs = [ python3Packages.irc ];
# import irc does not work right now.
doCheck = false;
makeWrapperArgs = [
"--prefix" "PATH" ":" "${stdenv.lib.makeBinPath [ nix-prefetch-git git nix ]}"
"--set" "LOCALE_ARCHIVE" "${glibcLocales}/lib/locale/locale-archive"