python313Packages.bibtexparser: 1.4.3 -> 2.0.0b8

This commit is contained in:
Martin Weinelt 2025-05-21 04:39:01 +02:00 committed by Robert Schütz
parent fe7d1f61ed
commit 1634b4ac47

View file

@ -2,26 +2,26 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pyparsing,
setuptools,
pylatexenc,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "bibtexparser";
version = "1.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
version = "2.0.0b8";
pyproject = true;
src = fetchFromGitHub {
owner = "sciunto-org";
repo = "python-${pname}";
tag = "v${version}";
hash = "sha256-9m+7RbeJMJssviyIezPrSLMMGcQTHYaOFQwLhnu04Es=";
hash = "sha256-531Mh/5DUYayXm1H0v4dPX0P9mRcqcQcU/A+f4wwqxg=";
};
propagatedBuildInputs = [ pyparsing ];
build-system = [ setuptools ];
dependencies = [ pylatexenc ];
nativeCheckInputs = [ pytestCheckHook ];