python3Packages.hdlparse: drop

The package was using `use_2to3` which was removed from setuptools
in version 58. The project is also unmaintained since 2018.
This commit is contained in:
Martin Weinelt 2022-01-18 15:33:16 +01:00
parent 65d3b6d74d
commit c1316381f1
3 changed files with 1 additions and 24 deletions

View File

@ -1,22 +0,0 @@
{ 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

@ -62,6 +62,7 @@ mapAliases ({
grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21
HAP-python = hap-python; # added 2021-06-01
hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07
hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
IMAPClient = imapclient; # added 2021-10-28
jupyter_client = jupyter-client; # added 2021-10-15
Keras = keras; # added 2021-11-25

View File

@ -3625,8 +3625,6 @@ in {
hdfs = callPackage ../development/python-modules/hdfs { };
hdlparse = callPackage ../development/python-modules/hdlparse { };
hdmedians = callPackage ../development/python-modules/hdmedians { };
headerparser = callPackage ../development/python-modules/headerparser { };