1aurent commited on
Commit
70701ef
1 Parent(s): 63b8d95

Delete flake.nix

Browse files
Files changed (1) hide show
  1. flake.nix +0 -19
flake.nix DELETED
@@ -1,19 +0,0 @@
1
- {
2
- inputs = {
3
- nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
4
- flake-utils.url = "github:numtide/flake-utils";
5
- };
6
-
7
- outputs = { self, nixpkgs, flake-utils }:
8
- flake-utils.lib.eachDefaultSystem (system:
9
- let pkgs = nixpkgs.legacyPackages.${system};
10
- in {
11
- devShell = pkgs.mkShell {
12
- buildInputs = with pkgs; [
13
- python311
14
- python311Packages.datasets
15
- python311Packages.pillow
16
- ];
17
- };
18
- });
19
- }