nixpkgs/pkgs/development/python-modules/webargs/default.nix
Martin Weinelt 3c5fe46db8 python3Packages.webargs: 8.7.0 -> 8.7.1
This commit was automatically generated using update-python-libraries.
2026-02-01 17:40:48 +01:00

56 lines
1,008 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
flit-core,
marshmallow,
pytestCheckHook,
pytest-aiohttp,
webtest,
webtest-aiohttp,
flask,
django,
bottle,
tornado,
pyramid,
falcon,
aiohttp,
}:
buildPythonPackage rec {
pname = "webargs";
version = "8.7.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-eZv5A5x2wj/Y3BlREHp1qeVhIDwV1q6PicHkbiNGNsE=";
};
build-system = [ flit-core ];
dependencies = [ marshmallow ];
nativeCheckInputs = [
pytestCheckHook
pytest-aiohttp
webtest
webtest-aiohttp
flask
django
bottle
tornado
pyramid
falcon
aiohttp
];
pythonImportsCheck = [ "webargs" ];
meta = {
description = "Declarative parsing and validation of HTTP request objects, with built-in support for popular web frameworks";
homepage = "https://github.com/marshmallow-code/webargs";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cript0nauta ];
};
}