Skip to content

Commit

Permalink
Provide pip inside the dev environment
Browse files Browse the repository at this point in the history
  • Loading branch information
blast-hardcheese committed Dec 15, 2023
1 parent 7b4261e commit d4c1129
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
nix-editor-pkg = nix-editor.packages.${system}.nix-editor;
in rec {
default = upm;
devShell = pkgs.callPackage ./devshell {nix-editor = nix-editor-pkg;};
devShell = pkgs.callPackage ./devshell {nix-editor = nix-editor-pkg; pip = pkgs.python311Packages.pip;};
fmt = pkgs.callPackage ./fmt {};
upm = pkgs.callPackage ./upm {inherit rev;};
}
2 changes: 2 additions & 0 deletions nix/devshell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
nodejs,
nodePackages,
nix-editor,
pip,
poetry,
python311Full,
golangci-lint,
Expand All @@ -19,6 +20,7 @@ mkShell {
nodejs
nodePackages.pnpm
nodePackages.yarn
pip
poetry
python311Full
];
Expand Down
1 change: 1 addition & 0 deletions replit.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
pkgs.nodePackages.pnpm
pkgs.python310Full
pkgs.python310Packages.pip
pkgs.pip
pkgs.poetry
pkgs.R
pkgs.ruby
Expand Down

0 comments on commit d4c1129

Please sign in to comment.