From 35e72ae715021dfa261fc2b065dd2e13757de4e0 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Fri, 4 Jul 2025 12:23:31 +1000 Subject: [PATCH] Tidy up formatting --- flake.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index d430b94..a477a42 100644 --- a/flake.nix +++ b/flake.nix @@ -10,16 +10,17 @@ flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; - python = pkgs.python313; # or python312 if you prefer + python = pkgs.python313; pythonPackages = python.pkgs; locutus = pythonPackages.buildPythonApplication { pname = "locutus"; version = "0.1.0"; src = ./.; format = "pyproject"; - nativeBuildInputs = with pkgs; [ makeWrapper python.pkgs.setuptools ]; - propagatedBuildInputs = with pythonPackages; [ - ]; + + nativeBuildInputs = with pkgs; [ makeWrapper python.pkgs.setuptools ]; + propagatedBuildInputs = with pythonPackages; []; + # Install the CLI entrypoint postInstall = '' wrapProgram $out/bin/locutus --prefix PATH : ${pkgs.borgbackup}/bin