59 lines
1 KiB
Nix
59 lines
1 KiB
Nix
|
{ lib
|
||
|
, bitstruct
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, jinja2
|
||
|
, jsonschema
|
||
|
, lark
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, setuptools
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ldfparser";
|
||
|
version = "0.21.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "c4deszes";
|
||
|
repo = "ldfparser";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-4uwze9TJYmNvhDiKYyUX6Ya+eQb0mbpQQaawUWmO3Gs=";
|
||
|
};
|
||
|
|
||
|
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";
|
||
|
homepage = "https://github.com/c4deszes/ldfparser";
|
||
|
changelog = "https://github.com/c4deszes/ldfparser/blob/${version}/CHANGELOG.md";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|