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