From 4e32ea0153f5a8d7d89c50c55220cb887ea6ee7a Mon Sep 17 00:00:00 2001 From: Yuriy Taraday Date: Sat, 4 Nov 2023 16:04:48 +0100 Subject: [PATCH] python311Packages.yq: add meta.mainProgram This makes `lib.getExe` happy. --- pkgs/development/python-modules/yq/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/yq/default.nix b/pkgs/development/python-modules/yq/default.nix index c730725581ac..cae85c51f4db 100644 --- a/pkgs/development/python-modules/yq/default.nix +++ b/pkgs/development/python-modules/yq/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - pytestCheckHook + pytestCheckHook ]; pytestFlagsArray = [ "test/test.py" ]; @@ -51,5 +51,6 @@ buildPythonPackage rec { homepage = "https://github.com/kislyuk/yq"; license = licenses.asl20; maintainers = with maintainers; [ womfoo SuperSandro2000 ]; + mainProgram = "yq"; }; }