2017-09-01 10:22:26 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi,
|
2019-12-22 11:38:29 -08:00
|
|
|
dateutil, simplejson, isPy27
|
2017-09-01 10:22:26 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "marshmallow";
|
2021-03-24 10:28:17 +01:00
|
|
|
version = "3.10.0";
|
2019-12-22 11:38:29 -08:00
|
|
|
disabled = isPy27;
|
2017-09-01 10:22:26 +02: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;
|
2021-03-24 10:28:17 +01:00
|
|
|
sha256 = "4ab2fdb7f36eb61c3665da67a7ce281c8900db08d72ba6bf0e695828253581f7";
|
2017-09-01 10:22:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dateutil simplejson ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
}
|