Skip to content

Commit

Permalink
Fix shell.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Nov 1, 2023
1 parent a1276d6 commit 8efe6cb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
}:

let
nix-alien = self.outputs.packages.${pkgs.system}.nix-alien.overrideAttrs (
oldAttrs: { doCheck = false; }
);
python-with-packages = pkgs.python3.withPackages (ps: with ps; [
inherit (pkgs) python3;
nix-alien = python3.pkgs.toPythonModule
(self.outputs.packages.${pkgs.system}.nix-alien.overrideAttrs
(oldAttrs: { doCheck = false; }));
python-with-packages = python3.withPackages (ps: with ps; [
mypy
nix-alien
pytest
Expand Down

0 comments on commit 8efe6cb

Please sign in to comment.