Delete modules directory

This commit is contained in:
ediblerope 2025-12-03 15:59:47 +00:00 committed by GitHub
parent 32624bde39
commit 982de5e524
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,29 +0,0 @@
{ pkgs, ... }:
let
krisp-patcher =
pkgs.writers.writePython3Bin "krisp-patcher"
{
libraries = with pkgs.python3Packages; [
capstone
pyelftools
];
flakeIgnore = [
"E501" # line too long (82 > 79 characters)
"F403" # 'from module import *' used; unable to detect undefined names
"F405" # name may be undefined, or defined from star imports: module
];
}
(
builtins.readFile (
pkgs.fetchurl {
url = "https://raw.githubusercontent.com/sersorrel/sys/afc85e6b249e5cd86a7bcf001b544019091b928c/hm/discord/krisp-patcher.py";
sha256 = "sha256-h8Jjd9ZQBjtO3xbnYuxUsDctGEMFUB5hzR/QOQ71j/E=";
}
)
);
in
{
environment.systemPackages = [
krisp-patcher
];
}