From cd8f22ea7e5dafc035f8b315cae80e0e6fb9ae46 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 28 May 2026 22:14:54 +0100 Subject: [PATCH] pypy3Packages.adb-shell: fix the eval MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without the change the eval fails on `master` as: $ nix build --no-link -f. pypy3Packages.adb-shell error: … while evaluating the attribute 'drvPath' at lib/customisation.nix:415:11: 414| // { 415| drvPath = | ^ 416| assert condition; … while evaluating the attribute 'drvPath' at lib/customisation.nix:415:11: 414| // { 415| drvPath = | ^ 416| assert condition; … while calling the 'derivationStrict' builtin at «nix-internal»/derivation-internal.nix:37:12: 36| 37| strict = derivationStrict drvAttrs; | ^ 38| (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: attribute 'optional-dependencies' missing at pkgs/development/python-modules/adb-shell/default.nix:56:27: 55| ] 56| ++ lib.concatAttrValues finalAttrs.optional-dependencies; | ^ 57| --- pkgs/development/python-modules/adb-shell/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/adb-shell/default.nix b/pkgs/development/python-modules/adb-shell/default.nix index 514264325329..4388b0d24816 100644 --- a/pkgs/development/python-modules/adb-shell/default.nix +++ b/pkgs/development/python-modules/adb-shell/default.nix @@ -53,7 +53,7 @@ buildPythonPackage (finalAttrs: { pycryptodome pytestCheckHook ] - ++ lib.concatAttrValues finalAttrs.optional-dependencies; + ++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies; pythonImportsCheck = [ "adb_shell" ];