Continued BACH

This commit is contained in:
Marius Drechsler 2024-08-12 20:28:04 +02:00
parent 160309eff7
commit b0399c4675
7 changed files with 1193 additions and 9 deletions

View file

@ -0,0 +1,32 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in {
devShell = pkgs.mkShell rec {
buildInputs = with pkgs; [
];
nativeBuildInputs = with pkgs; [
python312Packages.pandas
python312Packages.matplotlib
python312Packages.imageio
python312Packages.requests
python312Packages.csvw
python312
];
};
packages.default = pkgs.mkDerivation {};
}
);
}