mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
28 lines
619 B
Nix
28 lines
619 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
dateutil, simplejson, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "marshmallow";
|
|
version = "3.9.1";
|
|
disabled = isPy27;
|
|
|
|
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 = "73facc37462dfc0b27f571bdaffbef7709e19f7a616beb3802ea425b07843f4e";
|
|
};
|
|
|
|
propagatedBuildInputs = [ dateutil simplejson ];
|
|
|
|
doCheck = false;
|
|
}
|