nixpkgs/pkgs/development/python-modules/marshmallow/default.nix

27 lines
591 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi,
dateutil, simplejson
}:
buildPythonPackage rec {
pname = "marshmallow";
2018-10-06 12:56:18 +02:00
version = "2.15.6";
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-10-06 12:56:18 +02:00
sha256 = "485ac6ed0dff5e1af6ea1e3a54425a448968f581b065424c89a5375e4d4866fd";
};
propagatedBuildInputs = [ dateutil simplejson ];
doCheck = false;
}