pythonPackages.marshmallow: init at 2.13.5

This commit is contained in:
betaboon
2017-09-01 10:22:26 +02:00
committed by Frederik Rietdijk
parent d3fc82d81b
commit b696d6c90d
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchPypi,
dateutil, simplejson
}:
buildPythonPackage rec {
pname = "marshmallow";
name = "${pname}-${version}";
version = "2.13.5";
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;
sha256 = "048rzdkvnais51xdiy27nail5vxjb4ggw3vd60prn1q11lf16wig";
};
propagatedBuildInputs = [ dateutil simplejson ];
doCheck = false;
}