Merge pull request #270603 from fabaff/ldfparser

python311Packages.ldfparser: init at 0.21.0
This commit is contained in:
Fabian Affolter 2023-11-29 10:04:50 +01:00 committed by GitHub
commit f06d06d0ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,58 @@
{ 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 ];
};
}

View File

@ -6114,6 +6114,8 @@ self: super: with self; {
ldaptor = callPackage ../development/python-modules/ldaptor { };
ldfparser = callPackage ../development/python-modules/ldfparser { };
leather = callPackage ../development/python-modules/leather { };
leb128 = callPackage ../development/python-modules/leb128 { };