mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 22:40:57 -05:00
8 lines
129 B
Nix
8 lines
129 B
Nix
final: prev: let
|
|
reqPkgs = (pyPackages: with pyPackages;[
|
|
requests
|
|
]);
|
|
in {
|
|
py = prev.python3.withPackages reqPkgs;
|
|
}
|
|
|