python311Packages.beautifulsoup4: 4.12.2 -> 4.12.3

Changelog: https://git.launchpad.net/beautifulsoup/tree/CHANGELOG?h=4.12.3
This commit is contained in:
Fabian Affolter
2024-03-12 04:30:06 +01:00
committed by Martin Weinelt
parent e71d1c92e8
commit 04733f719d
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, chardet
, hatchling
, html5lib
@@ -22,8 +21,8 @@
buildPythonPackage rec {
pname = "beautifulsoup4";
version = "4.12.2";
format = "pyproject";
version = "4.12.3";
pyproject = true;
outputs = ["out" "doc"];
@@ -31,21 +30,9 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
hash = "sha256-SSu8adyjXRLarHHE2xv/8Mh2wA70ov+sziJtRjjrcto=";
hash = "sha256-dOPRko7cBw0hdIGFxG4/szSQ8i9So63e6a7g9Pd4EFE=";
};
patches = [
# Fix test with libxml 2.12.
# https://bugs.launchpad.net/beautifulsoup/+bug/2045481
(fetchpatch {
url = "https://bugs.launchpad.net/beautifulsoup/+bug/2045481/+attachment/5726132/+files/2045481.diff";
hash = "sha256-f/Wkh7El4r1iWM2/CSi5AKE1+NsEP3D5pxWgBcZ//Vs=";
excludes = [
"CHANGELOG"
];
})
];
nativeBuildInputs = [
hatchling
sphinxHook