Skip to content

Commit

Permalink
fix: update python input
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkolenz committed Sep 12, 2024
1 parent be7e585 commit fd2796f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
};
outputs =
inputs@{
nixpkgs,
flake-parts,
systems,
flocken,
Expand All @@ -33,6 +32,7 @@
}:
let
nodejs = pkgs.nodejs_20;
python = pkgs.python3.withPackages (p: with p; [ setuptools ]);
npmlock2nix = import inputs.npmlock2nix { inherit pkgs; };
caddyport = "8080";
caddyfile = pkgs.writeText "caddyfile" ''
Expand Down Expand Up @@ -72,7 +72,7 @@
node_modules_attrs = {
inherit nodejs;
# Python is needed for node-gyp/libsass
buildInputs = with pkgs; [ python3 ];
buildInputs = [ python ];
};
};
arguemapper = self'.packages.default;
Expand Down

0 comments on commit fd2796f

Please sign in to comment.