{ lib , fetchPypi , buildPythonPackage , pytest, pytestrunner, pytestcov , isPy3k , isPy38 }: buildPythonPackage rec { pname = "multidict"; version = "5.0.2"; src = fetchPypi { inherit pname version; sha256 = "e5bf89fe57f702a046c7ec718fe330ed50efd4bcf74722940db2eb0919cddb1c"; }; checkInputs = [ pytest pytestrunner pytestcov ]; disabled = !isPy3k; # pickle files needed for 3.8 https://github.com/aio-libs/multidict/pull/363 doCheck = !isPy38; meta = with lib; { description = "Multidict implementation"; homepage = "https://github.com/aio-libs/multidict/"; license = licenses.asl20; maintainers = with maintainers; [ dotlambda ]; }; }