pythonPackages.hdlparse: init at 1.0.4

Signed-off-by: Elliott Villars <elliottvillars@gmail.com>
gstqt5
Elliott Villars 2020-08-08 16:09:24 -07:00 committed by Jon
parent d92cc4cec9
commit e449d07a26
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "hdlparse";
version = "1.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "fb6230ed1e7a04a8f82f8d3fb59791d0751ae35e5b8e58dbbf2cbcf100d0d0f2";
};
#This module does not contain any tests.
doCheck = false;
meta = with lib; {
homepage = "https://kevinpt.github.io/hdlparse/";
description = "Rudimentary parser for VHDL and Verilog";
license = licenses.mit;
maintainers = with maintainers; [ elliottvillars ];
};
}

View File

@ -858,6 +858,8 @@ in {
hdmedians = callPackage ../development/python-modules/hdmedians { };
hdlparse = callPackage ../development/python-modules/hdlparse { };
hiyapyco = callPackage ../development/python-modules/hiyapyco { };
hocr-tools = callPackage ../development/python-modules/hocr-tools { };