soyouzpanda 81b5c727ae
python3Packages.uwsgi-chunked: init at 0.1.8
Co-authored-by: Defelo <mail@defelo.de>
2025-03-04 19:26:46 +01:00

34 lines
717 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "uwsgi-chunked";
version = "0.1.8";
pyproject = true;
src = fetchFromGitHub {
owner = "btimby";
repo = "uwsgi-chunked";
tag = version;
hash = "sha256-5TNCnQhnT1gAblgs+AAW62HoNDPM54hpxgCnYl07j3I=";
};
build-system = [ setuptools ];
# requires running containers via docker
doCheck = false;
pythonImportsCheck = [ "uwsgi_chunked" ];
meta = {
description = "WSGI application wrapper that handles Transfer-Encoding: chunked";
homepage = "https://github.com/btimby/uwsgi-chunked";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ defelo ];
};
}