Merge #291219: urlwatch: cherry-pick lxml 5 compatibility fix
...into staging-next
This commit is contained in:
commit
b9a08a7a03
1 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ lib
|
{ lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, python3Packages
|
, python3Packages
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -14,6 +15,16 @@ python3Packages.buildPythonApplication rec {
|
||||||
hash = "sha256-dGohG2+HrsuKegPAn1fmpLYPpovEEUsx+C/0sp2/cX0=";
|
hash = "sha256-dGohG2+HrsuKegPAn1fmpLYPpovEEUsx+C/0sp2/cX0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# lxml 5 compatibility fix
|
||||||
|
# FIXME: remove in next release
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/thp/urlwatch/commit/123de66d019aef7fc18fab6d56cc2a54d81fea3f.patch";
|
||||||
|
excludes = [ "CHANGELOG.md" ];
|
||||||
|
hash = "sha256-C9qb6TYeNcdszunE2B5DWRyXyqnANd32H7m9KmidCD0=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
appdirs
|
appdirs
|
||||||
cssselect
|
cssselect
|
||||||
|
|
Loading…
Reference in a new issue