File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments