kat-pkgs/default.nix

6 lines
198 B
Nix
Raw Normal View History

2024-10-25 15:10:54 +02:00
{ pkgs, lib ? pkgs.lib }: with lib;
mapAttrs' (name: _: {
value = pkgs.python3.pkgs.callPackage (./python-pkgs/${name}) { };
name = removeSuffix ".nix" name;
}) (builtins.readDir ./python-pkgs)