1{ lib, buildPythonPackage, fetchPypi,
2 dateutil, simplejson, isPy27
3}:
4
5buildPythonPackage rec {
6 pname = "marshmallow";
7 version = "3.3.0";
8 disabled = isPy27;
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 = "0ba81b6da4ae69eb229b74b3c741ff13fe04fb899824377b1aff5aaa1a9fd46e";
22 };
23
24 propagatedBuildInputs = [ dateutil simplejson ];
25
26 doCheck = false;
27}