-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdefault.nix
More file actions
58 lines (52 loc) · 1020 Bytes
/
Copy pathdefault.nix
File metadata and controls
58 lines (52 loc) · 1020 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
callPackages,
python311,
nix-gitignore,
}:
let
shells = callPackages ./shells.nix { };
py = python311;
hostfactory = py.pkgs.buildPythonPackage rec {
pname = "hostfactory";
version = "1.0";
pyproject = true;
# TODO: move source up one level, otheriwise app is rebuilt every time
# there is a change in root level expressions.
src =
nix-gitignore.gitignoreSource
[
"helm"
"deployments"
"bin"
"docs"
"tools"
./.gitignore
]
./.;
nativeBuildInputs = with py.pkgs; [
setuptools
wheel
pep517
pip
hatchling
pytest-cov
mypy
];
nativeCheckInputs = with py.pkgs; [
pytestCheckHook
pytest-mock
];
propagatedBuildInputs = with py.pkgs; [
click
kubernetes
boto3
jinja2
typing-extensions
inotify
wrapt
rich
pydantic
];
};
in
{ inherit hostfactory; } // shells