Skip to content

Commit

Permalink
default.nix: python3.pkgs -> python3Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Nov 17, 2024
1 parent 907925d commit fbacee3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ let
withNom
&& (builtins.tryEval (builtins.elem buildPlatform.system pkgs.ghc.meta.platforms)).value or false;
in
python3.pkgs.buildPythonApplication {
python3Packages.buildPythonApplication {
name = "nixpkgs-review";
src = ./.;
format = "pyproject";
nativeBuildInputs = [ installShellFiles ] ++ lib.optional withAutocomplete python3.pkgs.argcomplete;
propagatedBuildInputs = [ python3.pkgs.argcomplete ];
nativeBuildInputs = [ installShellFiles ] ++ lib.optional withAutocomplete python3Packages.argcomplete;
propagatedBuildInputs = [ python3Packages.argcomplete ];

nativeCheckInputs = [
python3.pkgs.setuptools
python3.pkgs.pylint
python3Packages.setuptools
python3Packages.pylint
glibcLocales

# needed for interactive unittests
python3.pkgs.pytest
python3Packages.pytest
pkgs.nixVersions.stable or nix_2_4
git
] ++ lib.optional withSandboxSupport bubblewrap ++ lib.optional withNom' nix-output-monitor;
Expand Down

0 comments on commit fbacee3

Please sign in to comment.