mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
aiohttp-utils: init at 3.1.1
This commit is contained in:
parent
1da6d4e38e
commit
4712a21367
27
pkgs/software-heritage/aiohttp-utils.nix
Normal file
27
pkgs/software-heritage/aiohttp-utils.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user