added full julia, python, r setup

This commit is contained in:
Daniel Winkler 2025-06-01 23:46:29 +02:00
commit 8193797c23
No known key found for this signature in database
22 changed files with 1853 additions and 0 deletions

9
templates/sci/pypkgs.nix Normal file
View file

@ -0,0 +1,9 @@
final: prev: let
reqPkgs = (pyPackages: with pyPackages;[
pandas
requests
]);
in {
py = prev.python3.withPackages reqPkgs;
}