2022-08-10 10:31:28 +00:00
|
|
|
{ stdenv, lib, python3Packages, ... }:
|
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp-utils";
|
2023-03-03 01:12:28 +00:00
|
|
|
version = "3.2.1";
|
2022-08-10 10:31:28 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
2023-03-03 01:12:28 +00:00
|
|
|
pname = "aiohttp-utils";
|
|
|
|
sha256 = "sha256-UJWcQ68aXvgwvHrWLB6NgFlGpB51VhFpSHvPuJq1IDw=";
|
2022-08-10 10:31:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2025-01-15 06:00:12 +00:00
|
|
|
propagatedBuildInputs = [ aiohttp gunicorn python-mimeparse ];
|
2022-08-10 10:31:28 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/sloria/aiohttp-utils";
|
|
|
|
description = "Provides utilities for building aiohttp applications";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|