forked from DGNum/infrastructure
feat(dgn-chatops): Takumi v1.0.0
Can schedule meet.dgnum.eu in the chat upon demand. Signed-off-by: Ryan Lahfa <ryan@dgnum.eu>
This commit is contained in:
parent
4a275fd07e
commit
1c6124f376
7 changed files with 248 additions and 5 deletions
29
modules/dgn-chatops/shell.nix
Normal file
29
modules/dgn-chatops/shell.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
python3 ? pkgs.python3,
|
||||
}:
|
||||
let
|
||||
takumi = python3.pkgs.buildPythonPackage rec {
|
||||
pname = "takumi";
|
||||
version = "1.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = ./.;
|
||||
|
||||
build-system = [ python3.pkgs.hatchling ];
|
||||
|
||||
dependencies = [
|
||||
(python3.pkgs.callPackage ./ircrobots.nix { })
|
||||
(python3.pkgs.callPackage ./tortoise-orm.nix { })
|
||||
python3.pkgs.aiohttp
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/bin
|
||||
cp -v takumi.py $out/bin/takumi.py
|
||||
chmod +x $out/bin/takumi.py
|
||||
wrapProgram $out/bin/takumi.py --prefix PYTHONPATH : "$PYTHONPATH"
|
||||
'';
|
||||
};
|
||||
in
|
||||
pkgs.mkShell { packages = [ takumi ]; }
|
Loading…
Add table
Add a link
Reference in a new issue