1{ stdenv
2, fetchPypi
3, buildPythonPackage
4, multidict
5, pytestrunner
6, pytest
7, idna
8}:
9
10buildPythonPackage rec {
11 pname = "yarl";
12 version = "1.4.2";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "58cd9c469eced558cd81aa3f484b2924e8897049e06889e8ff2510435b7ef74b";
17 };
18
19 checkInputs = [ pytest pytestrunner ];
20 propagatedBuildInputs = [ multidict idna ];
21
22 meta = with stdenv.lib; {
23 description = "Yet another URL library";
24 homepage = https://github.com/aio-libs/yarl/;
25 license = licenses.asl20;
26 maintainers = with maintainers; [ dotlambda ];
27 };
28}