aiohttp-utils: init at 3.1.1

This commit is contained in:
Gabriel Arazas 2022-08-10 18:31:28 +08:00
parent 1da6d4e38e
commit 4712a21367

View File

@ -0,0 +1,27 @@
{ stdenv, lib, python3Packages, ... }:
with python3Packages;
buildPythonPackage rec {
pname = "aiohttp-utils";
version = "3.1.1";
src = fetchPypi {
inherit version;
pname = "aiohttp_utils";
sha256 = "sha256-CPLE3BWj/Rk6qQSiH0/zZfW64LE6Z2Tz59BaO7gC3BQ";
};
doCheck = false;
propagatedBuildInputs = [
aiohttp
gunicorn
python-mimeparse
];
meta = with lib; {
homepage = "https://github.com/sloria/aiohttp-utils";
description = "Provides utilities for building aiohttp applications";
license = licenses.mit;
};
}