Skip to content

Commit 1e19f53

Browse files
necessarily-equalillwieckz
authored andcommitted
Use the default version of python3.
This avoids having to compile python3.10 and allows using the precompiled version instead.
1 parent dcd0e28 commit 1e19f53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
in {
1515

1616
defaultPackage = lib.mapAttrs (system: pkgs:
17-
pkgs.python310.pkgs.buildPythonPackage {
17+
pkgs.python3.pkgs.buildPythonPackage {
1818
name = "sloth";
1919

2020
src = pkgs.lib.cleanSource ./.;
2121

2222
format = "other";
2323

2424
buildInputs = [
25-
(pkgs.python310.withPackages (ps: [ ps.pillow ]))
25+
(pkgs.python3.withPackages (ps: [ ps.pillow ]))
2626
];
2727

2828
installPhase = ''

0 commit comments

Comments
 (0)