From 864e7fc2a30054896db41a225b726cc80c5ea5c1 Mon Sep 17 00:00:00 2001 From: Defelo Date: Fri, 17 Oct 2025 09:46:43 +0000 Subject: [PATCH] zipline: 4.3.1 -> 4.3.2 Changelog: https://github.com/diced/zipline/releases/tag/v4.3.2 Diff: https://github.com/diced/zipline/compare/v4.3.1...v4.3.2 --- pkgs/by-name/zi/zipline/package.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/zi/zipline/package.nix b/pkgs/by-name/zi/zipline/package.nix index d6eb64956ceb..ba65f44c4cc1 100644 --- a/pkgs/by-name/zi/zipline/package.nix +++ b/pkgs/by-name/zi/zipline/package.nix @@ -32,13 +32,13 @@ in stdenv.mkDerivation (finalAttrs: { pname = "zipline"; - version = "4.3.1"; + version = "4.3.2"; src = fetchFromGitHub { owner = "diced"; repo = "zipline"; tag = "v${finalAttrs.version}"; - hash = "sha256-tQRfgLU0Dvf3vhELsttprfzscvHUgI1u7k9RA4S4vqo="; + hash = "sha256-t83LYLjAdXQkQKZlzaBCIs1wKk3v3GVQi8QHUPRHC18="; leaveDotGit = true; postFetch = '' git -C $out rev-parse --short HEAD > $out/.git_head @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_10.fetchDeps { inherit (finalAttrs) pname version src; fetcherVersion = 2; - hash = "sha256-zbr57RVBKGpnL5u0evbQAKGyMftHXj6cuntYBHiUxiM="; + hash = "sha256-i5unHz7Hs9zvnjgLwHJaoFdM2z/5ucXZG8eouko1Res="; }; buildInputs = [ @@ -67,7 +67,9 @@ stdenv.mkDerivation (finalAttrs: { python3 ]; - env = environment; + env = environment // { + DATABASE_URL = "dummy"; + }; buildPhase = '' runHook preBuild @@ -116,6 +118,7 @@ stdenv.mkDerivation (finalAttrs: { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgram = "${placeholder "out"}/bin/ziplinectl"; versionCheckProgramArg = "--version"; + versionCheckKeepEnvironment = [ "DATABASE_URL" ]; doInstallCheck = true; passthru = {