-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
flake.nix
78 lines (71 loc) · 2.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
description = "Flake for github.com/n8henrie/fauxmo";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-23.11";
outputs = {
self,
nixpkgs,
}: let
inherit (nixpkgs) lib;
systems = ["aarch64-darwin" "x86_64-linux" "aarch64-linux"];
systemGen = attrs:
builtins.foldl' (acc: system:
lib.recursiveUpdate acc (attrs {
inherit system;
pkgs = import nixpkgs {
inherit system;
overlays = [self.outputs.overlays.default];
};
})) {}
systems;
in
{
overlays.default = _: prev: {
pythonPackagesExtensions =
prev.pythonPackagesExtensions
++ [(py-final: _: {fauxmo = py-final.callPackage ./. {};})];
};
}
// systemGen ({
pkgs,
system,
}: {
formatter.${system} = pkgs.alejandra;
packages.${system} = {
default = self.outputs.packages.${system}.pythonWithFauxmo;
pythonWithFauxmo = pkgs.python3.withPackages (ps:
with ps; [
self.outputs.packages.${system}.fauxmo
uvloop
]);
fauxmo = pkgs.callPackage ./. {};
};
nixosModules = {
default = self.outputs.nixosModules.fauxmo;
fauxmo = import ./module.nix;
};
apps.${system}.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/python -m fauxmo.cli";
};
devShells.${system}.default = pkgs.mkShell {
# Provides GCC for building brotli
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [pkgs.stdenv.cc.cc];
venvDir = ".venv";
postVenvCreation = ''
unset SOURCE_DATE_EPOCH
pip install -e .[dev,test]
'';
postShellHook = ''
export SSL_CERT_FILE=$NIX_SSL_CERT_FILE;
'';
buildInputs = with pkgs; [
python38
python39
python310
python311
python311.pkgs.venvShellHook
];
};
checks.${system}.integration = import ./integration_test.nix {inherit pkgs;};
});
}