From f6ae78c40b155321e4b4debecfc39d730c69acba Mon Sep 17 00:00:00 2001 From: Henri Menke Date: Wed, 6 May 2026 14:52:38 +0200 Subject: [PATCH] reptyr: shrink build closure --- pkgs/by-name/re/reptyr/package.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkgs/by-name/re/reptyr/package.nix b/pkgs/by-name/re/reptyr/package.nix index b7567f2e7b93..28ab5ab2ea63 100644 --- a/pkgs/by-name/re/reptyr/package.nix +++ b/pkgs/by-name/re/reptyr/package.nix @@ -2,12 +2,8 @@ stdenv, lib, fetchFromGitHub, - python3, }: -let - python = python3.withPackages (p: [ p.pexpect ]); -in stdenv.mkDerivation (finalAttrs: { version = "0.10.0"; pname = "reptyr"; @@ -24,16 +20,10 @@ stdenv.mkDerivation (finalAttrs: { "DESTDIR=$(out)" ]; - nativeCheckInputs = [ python ]; - # reptyr needs to do ptrace of a non-child process # It can be neither used nor tested if the kernel is not told to allow this doCheck = false; - checkFlags = [ - "PYTHON_CMD=${python.interpreter}" - ]; - meta = { platforms = [ "i686-linux"