587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib
|
|
, bitstruct
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, jinja2
|
|
, jsonschema
|
|
, lark
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ldfparser";
|
|
version = "0.24.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "c4deszes";
|
|
repo = "ldfparser";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-+7L2WCQEDpWPDBPVt4ddoz0U4YkJ9GqQqp0cKj2fAXM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
bitstruct
|
|
jinja2
|
|
lark
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
jsonschema
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"ldfparser"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# We don't care about benchmarks
|
|
"tests/test_performance.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "LIN Description File parser written in Python";
|
|
mainProgram = "ldfparser";
|
|
homepage = "https://github.com/c4deszes/ldfparser";
|
|
changelog = "https://github.com/c4deszes/ldfparser/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|