5 lines
198 B
Nix
5 lines
198 B
Nix
{ pkgs, lib ? pkgs.lib }: with lib;
|
|
mapAttrs' (name: _: {
|
|
value = pkgs.python3.pkgs.callPackage (./python-pkgs/${name}) { };
|
|
name = removeSuffix ".nix" name;
|
|
}) (builtins.readDir ./python-pkgs)
|