summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-07 21:19:34 +0200
committerGitHub <noreply@github.com>2023-09-07 21:19:34 +0200
commit8f3492cf125ca44e87d0561236324ac89545c5e3 (patch)
tree521444b1e8990bf13cae848f8988a8673028154f /pkgs
parente4a5d517fcd4fcdb21178a2a078a8d26743bd3e3 (diff)
parentefb0b2f9c7368072be0c2b2bb79e7f86356f3f84 (diff)
Merge pull request #253669 from AndrewKvalheim/picard/disable-autoupdate
picard: disable autoupdate
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/picard/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/audio/picard/default.nix b/pkgs/applications/audio/picard/default.nix
index f5f420aab0bd..a9eab5835db4 100644
--- a/pkgs/applications/audio/picard/default.nix
+++ b/pkgs/applications/audio/picard/default.nix
@@ -58,6 +58,8 @@ pythonPackages.buildPythonApplication rec {
pyyaml
];
+ setupPyGlobalFlags = [ "build" "--disable-autoupdate" ];
+
preCheck = ''
export HOME=$(mktemp -d)
'';