8 lines
267 B
Nix
8 lines
267 B
Nix
final: prev: {
|
|
python3 = prev.python3.override {
|
|
packageOverrides = python-self: python-super: {
|
|
uptime-kuma-api = python-self.callPackage ./uptime-kuma-api.nix { };
|
|
};
|
|
};
|
|
statelessUptimeKuma = final.callPackage ./stateless-uptime-kuma.nix { };
|
|
}
|