kat-pkgs/overlay.nix

6 lines
191 B
Nix
Raw Normal View History

2024-10-25 18:09:45 +02:00
self: super: with super.lib;
mapAttrs' (name: _: {
value = self.python3.pkgs.callPackage (./python-pkgs/${name}) { };
name = removeSuffix ".nix" name;
}) (builtins.readDir ./python-pkgs)