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

Loading…
Cancel
Save