python310Packages.marshmallow: 3.13.0 -> 3.15.0

main
Fabian Affolter 2 years ago
parent fd61626130
commit 520ca93540
  1. 12
      pkgs/development/python-modules/marshmallow/default.nix

@ -1,15 +1,16 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, pytz
, simplejson
}:
buildPythonPackage rec {
pname = "marshmallow";
version = "3.13.0";
version = "3.15.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -17,7 +18,7 @@ buildPythonPackage rec {
owner = "marshmallow-code";
repo = pname;
rev = version;
sha256 = "sha256-tP/RKo2Hzxz2bT7ybRs9wGzq7TpsmzmOPi3BGuSLDA0=";
hash = "sha256-ZqMrMNfP/RKW2jQDNPgfhyeqmSc40pZbnrcXHbw2emc=";
};
checkInputs = [
@ -31,10 +32,7 @@ buildPythonPackage rec {
];
meta = with lib; {
description = ''
A lightweight library for converting complex objects to and from
simple Python datatypes.
'';
description = "Library for converting complex objects to and from simple Python datatypes";
homepage = "https://github.com/marshmallow-code/marshmallow";
license = licenses.mit;
maintainers = with maintainers; [ cript0nauta ];

Loading…
Cancel
Save