nixpkgs/pkgs/development/python-modules/asgi-csrf/default.nix

49 lines
912 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, itsdangerous
, python-multipart
, pytestCheckHook
, starlette
, httpx
, pytest-asyncio
}:
2020-08-27 22:26:05 +00:00
buildPythonPackage rec {
version = "0.8";
2020-08-27 22:26:05 +00:00
pname = "asgi-csrf";
disabled = isPy27;
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = version;
sha256 = "sha256-0I/p9SjVVZhJQeR7s1R3tooP9XMNLPlcxl0dBSzsVaw=";
2020-08-27 22:26:05 +00:00
};
propagatedBuildInputs = [
itsdangerous
python-multipart
];
checkInputs = [
httpx
pytest-asyncio
pytestCheckHook
starlette
];
doCheck = false; # asgi-lifespan missing
2020-08-27 22:26:05 +00:00
pythonImportsCheck = [ "asgi_csrf" ];
meta = with lib; {
2020-08-27 22:26:05 +00:00
description = "ASGI middleware for protecting against CSRF attacks";
license = licenses.asl20;
homepage = "https://github.com/simonw/asgi-csrf";
maintainers = [ maintainers.ris ];
};
}