This commit is contained in:
Tibo De Peuter 2024-12-28 20:08:29 +01:00
parent 75e0ad6954
commit f135b633ad
14 changed files with 134 additions and 54 deletions

View file

@ -20,16 +20,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1712588820,
"narHash": "sha256-y31s5idk3jMJMAVE4Ud9AdI7HT3CgTAeMTJ0StqKN7Y=",
"lastModified": 1726838390,
"narHash": "sha256-NmcVhGElxDbmEWzgXsyAjlRhUus/nEqPC5So7BOJLUM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "d272ca50d1f7424fbfcd1e6f1c9e01d92f6da167",
"rev": "944b2aea7f0a2d7c79f72468106bc5510cbf5101",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-23.11",
"ref": "nixos-24.05",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -2,7 +2,7 @@
description = "Python flake with native packages";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
@ -18,10 +18,11 @@
config.allowUnfree = true;
};
python-packages = p: with p; [
biopython
numpy
dask
numba
# biopython
# dask
# distributed
# numba
# numpy
];
in {
devShells.default = pkgs.mkShell {
@ -29,11 +30,11 @@
python311
(python-packages python311Packages)
]) ++ (with pkgs-unstable; [
nodejs
memray
# nodejs
# memray
# Editor of your choice
# (jetbrains.plugins.addPlugins jetbrains.pycharm-professional [ "github-copilot" ])
(jetbrains.plugins.addPlugins jetbrains.pycharm-professional [ "github-copilot" ])
# vscodium
]);
};