depot/third_party/nixpkgs/pkgs/development/python-modules/a2wsgi/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

38 lines
703 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, asgiref
, httpx
, pdm-backend
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "a2wsgi";
version = "1.10.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-yA7qK3Uu2kEhbGRbgqQ6YvYAbGM27zGn2xQDOZ7ffBY=";
};
nativeBuildInputs = [
pdm-backend
];
nativeCheckInputs = [
asgiref
httpx
pytest-asyncio
pytestCheckHook
];
meta = with lib; {
description = "Convert WSGI app to ASGI app or ASGI app to WSGI app";
homepage = "https://github.com/abersheeran/a2wsgi";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}