-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathflake.nix
38 lines (34 loc) · 869 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
description = "TEstable SHell sessions in Markdown";
nixConfig = {
extra-trusted-public-keys = "oceansprint.cachix.org-1:bVOqLd1Vv4KNn7AhqfggmGwDc6GJybMz1gSL7MNEZKA=";
extra-substituters = "https://oceansprint.cachix.org";
};
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.05";
pydev = {
url = "github:oceansprint/pydev";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.pydev.flakeModule ];
systems = [
"aarch64-darwin"
"aarch64-linux"
"x86_64-darwin"
"x86_64-linux"
];
pydev = {
supportedPythons = [
"python39"
"python310"
"python311"
];
extraTestDependencies = [
"nmap"
];
};
};
}