1{ lib
2, fetchPypi
3, buildPythonPackage
4, pytest, pytestrunner, pytestcov
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 pname = "multidict";
10 version = "4.5.2";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "024b8129695a952ebd93373e45b5d341dbb87c17ce49637b34000093f243dd4f";
15 };
16
17 checkInputs = [ pytest pytestrunner pytestcov ];
18
19 disabled = !isPy3k;
20
21 meta = with lib; {
22 description = "Multidict implementation";
23 homepage = https://github.com/aio-libs/multidict/;
24 license = licenses.asl20;
25 maintainers = with maintainers; [ dotlambda ];
26 };
27}