1{ stdenv
2, fetchPypi
3, buildPythonPackage
4, multidict
5, pytestrunner
6, pytest
7, idna
8}:
9
10buildPythonPackage rec {
11 pname = "yarl";
12 version = "1.2.6";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "c8cbc21bbfa1dd7d5386d48cc814fe3d35b80f60299cdde9279046f399c3b0d8";
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}