python310Packages.socid-extractor: allow later beautifulsoup4 releases
This commit is contained in:
parent
0830f0b189
commit
2fea2285e4
1 changed files with 7 additions and 1 deletions
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||
owner = "soxoj";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0vdcxinpnl3vn2l4dybbyggdzm5mpmi3qbpars7lrg5m0mib0cml";
|
||||
hash = "sha256-tDKwYgW1vEyPzuouPGK9tdTf3vNr+UaosHtQe23srG0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -27,6 +27,12 @@ buildPythonPackage rec {
|
|||
requests
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# https://github.com/soxoj/socid-extractor/pull/125
|
||||
substituteInPlace requirements.txt \
|
||||
--replace "beautifulsoup4~=4.10.0" "beautifulsoup4>=4.10.0"
|
||||
'';
|
||||
|
||||
# Test require network access
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue