python310Packages.yarl: 1.8.1 -> 1.8.2

https://github.com/aio-libs/yarl/blob/v1.8.2/CHANGES.rst
This commit is contained in:
Robert Schütz 2022-12-09 23:19:41 -08:00 committed by Robert Schütz
parent 9551ca3318
commit 3954989b5b

View File

@ -10,11 +10,15 @@
buildPythonPackage rec {
pname = "yarl";
version = "1.8.1";
version = "1.8.2";
disabled = pythonOlder "3.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-r4h4RbjC4GDrVgX/crby3SqrenYTeTc/2J0xT0dSq78=";
hash = "sha256-SdQ0AsbjATrQl4YCv2v1MoU1xI0ZIwS5G5ejxnkLFWI=";
};
postPatch = ''
@ -44,6 +48,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "yarl" ];
meta = with lib; {
changelog = "https://github.com/aio-libs/yarl/blob/v${version}/CHANGES.rst";
description = "Yet another URL library";
homepage = "https://github.com/aio-libs/yarl";
license = licenses.asl20;