depot/third_party/nixpkgs/pkgs/development/python-modules/asgi-csrf/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

50 lines
969 B
Nix

{
lib,
buildPythonPackage,
isPy27,
fetchFromGitHub,
itsdangerous,
python-multipart,
pytestCheckHook,
starlette,
httpx,
pytest-asyncio,
}:
buildPythonPackage rec {
version = "0.10";
format = "setuptools";
pname = "asgi-csrf";
disabled = isPy27;
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-VclgePMQh60xXofrquI3sCyPUPlkV4maZ5yybt+4HCs=";
};
propagatedBuildInputs = [
itsdangerous
python-multipart
];
nativeCheckInputs = [
httpx
pytest-asyncio
pytestCheckHook
starlette
];
doCheck = false; # asgi-lifespan missing
pythonImportsCheck = [ "asgi_csrf" ];
meta = with lib; {
description = "ASGI middleware for protecting against CSRF attacks";
license = licenses.asl20;
homepage = "https://github.com/simonw/asgi-csrf";
maintainers = [ maintainers.ris ];
};
}