1{ lib, buildPythonPackage, fetchPypi, 2 dateutil, simplejson 3}: 4 5buildPythonPackage rec { 6 pname = "marshmallow"; 7 version = "2.15.4"; 8 9 meta = { 10 homepage = "https://github.com/marshmallow-code/marshmallow"; 11 description = '' 12 A lightweight library for converting complex objects to and from 13 simple Python datatypes. 14 ''; 15 license = lib.licenses.mit; 16 }; 17 18 src = fetchPypi { 19 inherit pname version; 20 sha256 = "0f3776aa5b5405f6000c9304841abe6d4d708bb08207fc89a5ecd86622ec9e54"; 21 }; 22 23 propagatedBuildInputs = [ dateutil simplejson ]; 24 25 doCheck = false; 26}