Merge pull request #308017 from r-ryantm/auto-update/python311Packages.ldfparser
python311Packages.ldfparser: 0.24.0 -> 0.25.0
This commit is contained in:
commit
55e8cd7607
1 changed files with 17 additions and 20 deletions
|
@ -1,18 +1,19 @@
|
|||
{ lib
|
||||
, bitstruct
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, jinja2
|
||||
, jsonschema
|
||||
, lark
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
{
|
||||
lib,
|
||||
bitstruct,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
jinja2,
|
||||
jsonschema,
|
||||
lark,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ldfparser";
|
||||
version = "0.24.0";
|
||||
version = "0.25.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
@ -21,14 +22,12 @@ buildPythonPackage rec {
|
|||
owner = "c4deszes";
|
||||
repo = "ldfparser";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-+7L2WCQEDpWPDBPVt4ddoz0U4YkJ9GqQqp0cKj2fAXM=";
|
||||
hash = "sha256-SZ9mWV5PjkQ2OiScPSMrunkKQWmuYW2lB2JvpTGNbY4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
bitstruct
|
||||
jinja2
|
||||
lark
|
||||
|
@ -39,9 +38,7 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ldfparser"
|
||||
];
|
||||
pythonImportsCheck = [ "ldfparser" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# We don't care about benchmarks
|
||||
|
@ -50,10 +47,10 @@ buildPythonPackage rec {
|
|||
|
||||
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 ];
|
||||
mainProgram = "ldfparser";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue