0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Revert "python313Packages.bibtexparser: 1.4.3 -> 2.0.0b8"

This reverts commit 2c49c7cf7b.

Breaks scholarly and thereby calibreweb.
This commit is contained in:
Martin Weinelt 2025-05-22 02:00:12 +02:00 committed by Robert Schütz
parent b00efc9c6a
commit cf1501fda9

View file

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