2017-09-01 09:22:26 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi,
|
|
|
|
dateutil, simplejson
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "marshmallow";
|
|
|
|
name = "${pname}-${version}";
|
2017-12-30 11:24:31 +00:00
|
|
|
version = "2.15.0";
|
2017-09-01 09:22:26 +01: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;
|
2017-12-30 11:24:31 +00:00
|
|
|
sha256 = "d3f31fe7be2106b1d783cbd0765ef4e1c6615505514695f33082805f929dd584";
|
2017-09-01 09:22:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dateutil simplejson ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
}
|