mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-02-19 14:30:58 -05:00
12 lines
177 B
Nix
12 lines
177 B
Nix
{ ... }:
|
|
final: prev:
|
|
let
|
|
reqPkgs = pyPackages:
|
|
with pyPackages; [
|
|
numpy
|
|
];
|
|
in
|
|
{
|
|
basePythonPackages = reqPkgs;
|
|
python = prev.python3.withPackages reqPkgs;
|
|
}
|