File tree Expand file tree Collapse file tree
development/python-modules/hdlparse Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ { lib , buildPythonPackage , fetchPypi } :
2+
3+ buildPythonPackage rec {
4+ pname = "hdlparse" ;
5+ version = "1.0.4" ;
6+
7+ src = fetchPypi {
8+ inherit pname version ;
9+ sha256 = "fb6230ed1e7a04a8f82f8d3fb59791d0751ae35e5b8e58dbbf2cbcf100d0d0f2" ;
10+ } ;
11+
12+ #This module does not contain any tests.
13+ doCheck = false ;
14+
15+ meta = with lib ; {
16+ homepage = "https://kevinpt.github.io/hdlparse/" ;
17+ description = "Rudimentary parser for VHDL and Verilog" ;
18+ license = licenses . mit ;
19+ maintainers = with maintainers ; [ elliottvillars ] ;
20+ } ;
21+ }
22+
Original file line number Diff line number Diff line change 858858
859859 hdmedians = callPackage ../development/python-modules/hdmedians { } ;
860860
861+ hdlparse = callPackage ../development/python-modules/hdlparse { } ;
862+
861863 hiyapyco = callPackage ../development/python-modules/hiyapyco { } ;
862864
863865 hocr-tools = callPackage ../development/python-modules/hocr-tools { } ;
You can’t perform that action at this time.
0 commit comments