pythonPackages.hdlparse: init at 1.0.4
Signed-off-by: Elliott Villars <elliottvillars@gmail.com>
This commit is contained in:
parent
d92cc4cec9
commit
e449d07a26
2 changed files with 24 additions and 0 deletions
22
pkgs/development/python-modules/hdlparse/default.nix
Normal file
22
pkgs/development/python-modules/hdlparse/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue