Continued BACH
This commit is contained in:
parent
160309eff7
commit
b0399c4675
7 changed files with 1193 additions and 9 deletions
32
data/z_distribution/flake.nix
Normal file
32
data/z_distribution/flake.nix
Normal 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 {};
|
||||
|
||||
|
||||
|
||||
}
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue