convert-scheme: fix pyyaml provisioning

This commit is contained in:
alfarel 2026-05-25 22:36:06 -04:00
commit 2220b3fa51
No known key found for this signature in database

View file

@ -1,6 +1,6 @@
{pkgs, ...}:
pkgs.writers.writePython3Bin "convert-scheme" {
libraries = with pkgs.python311Packages; [pyyaml];
libraries = with pkgs.python3Packages; [pyyaml];
flakeIgnore = ["E302" "E305" "E501"];
} ''
import argparse