2017-09-01 08:22:26 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi,
|
|
|
|
dateutil, simplejson
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "marshmallow";
|
|
|
|
name = "${pname}-${version}";
|
2018-05-09 14:48:25 +00:00
|
|
|
version = "2.15.1";
|
2017-09-01 08:22:26 +00:00
|
|
|
|
|
|
|
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;
|
2018-05-09 14:48:25 +00:00
|
|
|
sha256 = "b73361eab812af97eaf8e8691333a1096787968450051d132c8b9fb90aa1db5a";
|
2017-09-01 08:22:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dateutil simplejson ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
}
|