python3Packages.sopel: 7.1.0 -> 7.1.2

This commit is contained in:
Fabian Affolter 2021-08-09 22:21:10 +02:00
parent 8b4f1e4111
commit 9153df24d5

View file

@ -13,12 +13,12 @@
buildPythonPackage rec {
pname = "sopel";
version = "7.1.0";
version = "7.1.2";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "74057d4c86cff744b1f1062f3a9c4ae99eb4f1b17048ceb083293d5f4c7e989b";
sha256 = "sha256-8RhIw3Qt0BclH1Ws16JNuFfwiRxJ14lM6MBUK9OvNKA=";
};
propagatedBuildInputs = [
@ -36,7 +36,8 @@ buildPythonPackage rec {
# remove once https://github.com/sopel-irc/sopel/pull/1653 lands
postPatch = ''
substituteInPlace requirements.txt \
--replace "praw>=4.0.0,<6.0.0" "praw"
--replace "praw>=4.0.0,<6.0.0" "praw" \
--replace "sqlalchemy<1.4" "sqlalchemy"
'';
checkInputs = [ pytestCheckHook ];