Skip to content

Commit

Permalink
nix: Add python
Browse files Browse the repository at this point in the history
This will allow us to run integration test and create-zipball script reproducibly.
  • Loading branch information
jtojnar committed Dec 16, 2020
1 parent f5ab6c0 commit b03e916
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,18 @@
php = pkgs.${phpPackage}.withExtensions ({ enabled, all }: with all; enabled ++ [
imagick
]);

python = pkgs.python3.withPackages (pp: with pp; [
requests
bcrypt
]);
in
pkgs.mkShell {
nativeBuildInputs = [
php
pkgs.zola
pkgs.nodejs_latest
python
] ++ (with php.packages; [
composer
psalm
Expand Down

0 comments on commit b03e916

Please sign in to comment.