1{ lib 2, fetchPypi 3, buildPythonPackage 4, pytest, pytestrunner 5, isPy3k 6}: 7 8buildPythonPackage rec { 9 pname = "multidict"; 10 version = "4.3.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "5ba766433c30d703f6b2c17eb0b6826c6f898e5f58d89373e235f07764952314"; 15 }; 16 17 checkInputs = [ pytest pytestrunner ]; 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}