{ lib , fetchPypi , buildPythonPackage , multidict , pytestrunner , pytest , idna }: buildPythonPackage rec { pname = "yarl"; version = "1.0.0"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "5ea610467a04d99bfc8878186330b28859eafc6ca589cdd24ba6fb7234c4b011"; }; checkInputs = [ pytest pytestrunner ]; propagatedBuildInputs = [ multidict idna ]; meta = { description = "Yet another URL library"; homepage = https://github.com/aio-libs/yarl/; license = lib.licenses.asl20; }; }