1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage 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