We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcd0e28 commit 1e19f53Copy full SHA for 1e19f53
flake.nix
@@ -14,15 +14,15 @@
14
in {
15
16
defaultPackage = lib.mapAttrs (system: pkgs:
17
- pkgs.python310.pkgs.buildPythonPackage {
+ pkgs.python3.pkgs.buildPythonPackage {
18
name = "sloth";
19
20
src = pkgs.lib.cleanSource ./.;
21
22
format = "other";
23
24
buildInputs = [
25
- (pkgs.python310.withPackages (ps: [ ps.pillow ]))
+ (pkgs.python3.withPackages (ps: [ ps.pillow ]))
26
];
27
28
installPhase = ''
0 commit comments