-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
47 lines (45 loc) · 1.14 KB
/
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
39
40
41
42
43
44
45
46
47
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs =
{ self, nixpkgs }:
let
supportedSystems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system});
in
{
packages = forAllSystems (system: {
default =
with pkgs.${system};
with python39Packages;
buildPythonApplication {
pname = "rejection-sama";
version = "0.1.0";
src = ./.;
format = "pyproject";
propagatedBuildInputs = [
discordpy
flit
pandas
];
};
});
devShells = forAllSystems (system: {
default = pkgs.${system}.mkShellNoCC {
packages = with pkgs.${system}; [
(python39.withPackages (
ps: with ps; [
black
self.packages.${system}.default.buildInputs
]
))
];
};
});
};
}