Skip to content

Commit e449d07

Browse files
elliottvillarsJon
authored andcommitted
pythonPackages.hdlparse: init at 1.0.4
Signed-off-by: Elliott Villars <elliottvillars@gmail.com>
1 parent d92cc4c commit e449d07

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,8 @@ in {
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 { };

0 commit comments

Comments
 (0)