Skip to content

Commit 1b0d806

Browse files
authored
pdk-ciel: init at 2.3.1 (#470163)
2 parents 0d5c43f + 867433d commit 1b0d806

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
python3Packages,
5+
}:
6+
7+
python3Packages.buildPythonApplication rec {
8+
pname = "ciel";
9+
version = "2.3.1";
10+
pyproject = true;
11+
12+
src = fetchFromGitHub {
13+
owner = "fossi-foundation";
14+
repo = "ciel";
15+
tag = version;
16+
hash = "sha256-/B4s0X+/2rTkR81zK5fwFKmMAgfFYH2n/6etH7WYyik=";
17+
};
18+
19+
build-system = [ python3Packages.poetry-core ];
20+
21+
dependencies = with python3Packages; [
22+
pyyaml
23+
click
24+
httpx
25+
pcpp
26+
rich
27+
zstandard
28+
];
29+
30+
meta = {
31+
description = "Tool for managing Process Design Kits (PDKs) for ASIC and FPGA flows";
32+
homepage = "https://github.com/fossi-foundation/ciel";
33+
license = lib.licenses.asl20;
34+
maintainers = with lib.maintainers; [ gonsolo ];
35+
mainProgram = "ciel";
36+
};
37+
}

0 commit comments

Comments
 (0)