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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
setuptools-scm,
klayout,
aenum,
cachetools,
gitpython,
loguru,
pydantic,
pydantic-settings,
rectangle-packer,
requests,
ruamel-yaml-string,
scipy,
tomli,
toolz,
typer,
numpy,
ruamel-yaml,
}:
buildPythonPackage rec {
pname = "kfactory";
version = "0.21.7";
pyproject = true;
src = fetchFromGitHub {
owner = "gdsfactory";
repo = "kfactory";
rev = "v${version}";
sha256 = "sha256-VLhAJ5rOBKEO1FDCnlaseA+SmrMSoyS+BaEzjdHm59Y=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
aenum
cachetools
gitpython
klayout
loguru
numpy
pydantic
pydantic-settings
rectangle-packer
requests
ruamel-yaml
ruamel-yaml-string
scipy
tomli
toolz
typer
];
pythonImportsCheck = [ "kfactory" ];
nativeCheckInputs = [ pytestCheckHook ];
# https://github.com/gdsfactory/kfactory/issues/511
disabledTestPaths = [
"tests/test_pdk.py"
];
meta = with lib; {
description = "KLayout API implementation of gdsfactory";
homepage = "https://github.com/gdsfactory/kfactory";
license = licenses.mit;
maintainers = with maintainers; [ fbeffa ];
};
}
|