flake.nix: bump python from 3.12 -> 3.13
All checks were successful
Run tests / run-tests (push) Successful in 2m2s
Run benchmarks / run-tests (push) Successful in 12m0s

This commit is contained in:
2025-12-13 15:55:56 +09:00
parent d1d6b72270
commit 2c46659cfd
3 changed files with 6 additions and 6 deletions

6
flake.lock generated
View File

@@ -19,11 +19,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1764950072, "lastModified": 1765186076,
"narHash": "sha256-BmPWzogsG2GsXZtlT+MTcAWeDK5hkbGRZTeZNW42fwA=", "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f61125a668a320878494449750330ca58b78c557", "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -20,7 +20,7 @@
packages = forAllSystems (system: pkgs: { packages = forAllSystems (system: pkgs: {
default = self.packages.${system}.dibbler; default = self.packages.${system}.dibbler;
dibbler = pkgs.callPackage ./nix/dibbler.nix { dibbler = pkgs.callPackage ./nix/dibbler.nix {
python3Packages = pkgs.python312Packages; python3Packages = pkgs.python313Packages;
}; };
skrot = self.nixosConfigurations.skrot.config.system.build.sdImage; skrot = self.nixosConfigurations.skrot.config.system.build.sdImage;
}); });
@@ -42,7 +42,7 @@
devShells = forAllSystems (system: pkgs: { devShells = forAllSystems (system: pkgs: {
default = self.devShells.${system}.dibbler; default = self.devShells.${system}.dibbler;
dibbler = pkgs.callPackage ./nix/shell.nix { dibbler = pkgs.callPackage ./nix/shell.nix {
python3 = pkgs.python312; python3 = pkgs.python313;
}; };
}); });

View File

@@ -10,7 +10,7 @@ mkShell {
ruff ruff
uv uv
(python3.withPackages (ps: with ps; [ (python3.withPackages (ps: with ps; [
brother-ql # brother-ql
matplotlib matplotlib
psycopg2 psycopg2
python-barcode python-barcode