nixos-config/pkgs/software-heritage/aiohttp-utils.nix

28 lines
568 B
Nix
Raw Normal View History

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;
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;
};
}