From f67c9cd6a6e5311e0b4aef663c38376eb89bc4cd Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 13 May 2026 01:09:42 +0200 Subject: [PATCH] chkcrontab: migration to pyproject --- pkgs/by-name/ch/chkcrontab/package.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ch/chkcrontab/package.nix b/pkgs/by-name/ch/chkcrontab/package.nix index 2205eefcc159..55445ae320a3 100644 --- a/pkgs/by-name/ch/chkcrontab/package.nix +++ b/pkgs/by-name/ch/chkcrontab/package.nix @@ -9,13 +9,21 @@ with python3.pkgs; buildPythonApplication (finalAttrs: { pname = "chkcrontab"; version = "1.7"; - format = "setuptools"; + pyproject = true; src = fetchPypi { inherit (finalAttrs) pname version; sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn"; }; + postPatch = '' + # cannot install the manpage as it is not present in the wheel + substituteInPlace setup.py \ + --replace-fail "'doc/chkcrontab.1'" "" + ''; + + build-system = [ setuptools ]; + meta = { description = "Tool to detect crontab errors"; mainProgram = "chkcrontab";