python311Packages.canmatrix: add optional-dependencies

This commit is contained in:
Fabian Affolter 2023-11-30 08:55:48 +01:00
parent a90ce20c9c
commit aab46215e8

View File

@ -1,65 +1,99 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, attrs
, bitstruct
, buildPythonPackage
, click
, fetchFromGitHub
, future
, pathlib2
, typing ? null
, importlib-metadata
, ldfparser
, lxml
, xlwt
, xlrd
, xlsxwriter
, pyyaml
, openpyxl
, pytestCheckHook
, pythonOlder
, pyyaml
, six
, xlrd
, xlwt
}:
buildPythonPackage rec {
pname = "canmatrix";
version = "1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
# uses fetchFromGitHub as PyPi release misses test/ dir
src = fetchFromGitHub {
owner = "ebroecker";
repo = pname;
repo = "canmatrix";
rev = "refs/tags/${version}";
sha256 = "sha256-UUJnLVt+uOj8Eav162btprkUeTemItGrSnBBB9UhJJI=";
hash = "sha256-UUJnLVt+uOj8Eav162btprkUeTemItGrSnBBB9UhJJI=";
};
propagatedBuildInputs = [
# required
attrs
bitstruct
click
future
pathlib2
# optional
lxml
xlwt
xlrd
xlsxwriter
pyyaml
] ++ lib.optional (pythonOlder "3.5") typing;
postPatch = ''
substituteInPlace setup.py \
--replace "version = versioneer.get_version()" "version = \"${version}\""
--replace "version = versioneer.get_version()" 'version = "${version}"'
'';
nativeCheckInputs = [ pytestCheckHook ];
# long_envvar_name_imports requires stable key value pair ordering
pytestFlagsArray = [ "-s src/canmatrix" ];
disabledTests = [ "long_envvar_name_imports" ];
pythonImportsCheck = [ "canmatrix" ];
propagatedBuildInputs = [
attrs
click
future
six
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
passthru.optional-dependencies = {
arxml = [
lxml
];
fibex = [
lxml
];
kcd = [
lxml
];
ldf = [
ldfparser
];
odx = [
lxml
];
xls = [
xlrd
xlwt
];
xlsx = [
openpyxl
];
yaml = [
pyyaml
];
};
nativeCheckInputs = [
pytestCheckHook
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
pytestFlagsArray = [
# long_envvar_name_imports requires stable key value pair ordering
"-s src/canmatrix"
];
disabledTests = [
"long_envvar_name_imports"
];
pythonImportsCheck = [
"canmatrix"
];
meta = with lib; {
description = "Support and convert several CAN (Controller Area Network) database formats .arxml .dbc .dbf .kcd .sym fibex xls(x)";
description = "Support and convert several CAN (Controller Area Network) database formats";
homepage = "https://github.com/ebroecker/canmatrix";
changelog = "https://github.com/ebroecker/canmatrix/releases/tag/${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ sorki ];
};
}