0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

python313Packages.flask-marshmallow: 1.2.1 -> 1.3.0 (#373155)

This commit is contained in:
Nick Cao 2025-01-12 23:25:12 -05:00 committed by GitHub
commit b55dbc3fe4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,16 +13,16 @@
buildPythonPackage rec {
pname = "flask-marshmallow";
version = "1.2.1";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "marshmallow-code";
repo = "flask-marshmallow";
tag = version;
hash = "sha256-GQLkt/CJf/QI8emvlW8xSRziGnncwfMSxBccW0Bb8I0=";
hash = "sha256-dK2bE5mZiFh0nAN2yRpABT+SGG/UGWJ1oDtnD6bgyXk=";
};
build-system = [ flit-core ];