{ lib, buildPythonPackage, fetchPypi, dateutil, simplejson }: buildPythonPackage rec { pname = "marshmallow"; name = "${pname}-${version}"; version = "2.14.0"; meta = { homepage = "https://github.com/marshmallow-code/marshmallow"; description = '' A lightweight library for converting complex objects to and from simple Python datatypes. ''; license = lib.licenses.mit; }; src = fetchPypi { inherit pname version; sha256 = "09943a460026b9a61c3f4cedd0e5ccfed7cfce3271debd19e3f97df561088718"; }; propagatedBuildInputs = [ dateutil simplejson ]; doCheck = false; }