python313Packages.httpie: correctly set mainProgram

This commit is contained in:
Ben Darwin
2025-10-08 15:27:37 -04:00
parent 40f4f996a6
commit 9720d55ae7
@@ -112,15 +112,16 @@ buildPythonPackage rec {
"test_daemon_runner"
];
meta = with lib; {
meta = {
description = "Command line HTTP client whose goal is to make CLI human-friendly";
homepage = "https://httpie.org/";
changelog = "https://github.com/httpie/httpie/blob/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
antono
relrod
schneefux
];
mainProgram = "http";
};
}