-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanemoi.nix
More file actions
39 lines (39 loc) · 744 Bytes
/
anemoi.nix
File metadata and controls
39 lines (39 loc) · 744 Bytes
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
{
lib,
python3Packages,
fetchPypi,
...
}:
python3Packages.buildPythonPackage rec {
pname = "anemoi";
version = "1.0.5";
pyproject = true;
src = fetchPypi {
pname = "anemoi_dns";
inherit version;
hash = "sha256-/uqIWyy413UFKsZ3z0mESRLhvD04y0ysRhIjh13YwQU=";
};
build-system = with python3Packages; [
setuptools
setuptools-scm
];
dependencies = with python3Packages; [
click
flask
arrow
tinydb
requests
cloudflare
bcrypt
peewee
psycopg2
jsonschema
pyyaml
];
meta = {
description = "Anemoi is a least privilege dynamic DNS server";
homepage = "https://github.com/dayt0n/anemoi";
license = lib.licenses.bsd3;
mainProgram = "anemoi";
};
}