diff --git a/pkgs/development/python-modules/yarl/default.nix b/pkgs/development/python-modules/yarl/default.nix index 356e3f792639f..5948974654a59 100644 --- a/pkgs/development/python-modules/yarl/default.nix +++ b/pkgs/development/python-modules/yarl/default.nix @@ -6,8 +6,11 @@ cython, expandvars, setuptools, + hypothesis, idna, multidict, + propcache, + pytest-codspeed, pytest-cov-stub, pytest-xdist, pytestCheckHook, @@ -15,9 +18,9 @@ buildPythonPackage rec { pname = "yarl"; - version = "1.13.1"; + version = "1.18.0"; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; pyproject = true; @@ -25,7 +28,7 @@ buildPythonPackage rec { owner = "aio-libs"; repo = "yarl"; rev = "refs/tags/v${version}"; - hash = "sha256-I6/c5Q6/SRw8PIW4rPLKhVRVPRIC+n+Cz+UrKn5Pv/0="; + hash = "sha256-GJ8s2IQayaRL4FD8IooSIzjf6BJYrLdwlq/D8TGygmI="; }; build-system = [ @@ -37,6 +40,7 @@ buildPythonPackage rec { dependencies = [ idna multidict + propcache ]; preCheck = '' @@ -45,6 +49,8 @@ buildPythonPackage rec { ''; nativeCheckInputs = [ + hypothesis + pytest-codspeed pytest-cov-stub pytest-xdist pytestCheckHook