python311Packages.yarl: 1.9.3 -> 1.9.4

Changelog: https://github.com/aio-libs/yarl/blob/v1.9.4/CHANGES.rst
This commit is contained in:
Robert Schütz 2023-12-10 14:52:35 -08:00 committed by Martin Weinelt
parent 5ba4f21037
commit c70c1ec29a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -8,12 +8,13 @@
, idna
, multidict
, typing-extensions
, pytest-xdist
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "yarl";
version = "1.9.3";
version = "1.9.4";
disabled = pythonOlder "3.7";
@ -21,11 +22,11 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
hash = "sha256-ShSQe1l+xVdA9j5S1/7g6e4J1bnVek85mnQjJo5Fe1c=";
hash = "sha256-Vm24ZxfPgIC5m1iwg7dzqQiuQPBmgeh+WJqXb6+CRr8=";
};
postPatch = ''
sed -i '/^addopts/d' setup.cfg
sed -i '/cov/d' pytest.ini
'';
nativeBuildInputs = [
@ -47,6 +48,7 @@ buildPythonPackage rec {
'';
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];