nixpkgs/pkgs/development/python-modules/asgi-csrf/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

49 lines
916 B
Nix

{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, itsdangerous
, python-multipart
, pytestCheckHook
, starlette
, httpx
, pytest-asyncio
}:
buildPythonPackage rec {
version = "0.9";
pname = "asgi-csrf";
disabled = isPy27;
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = version;
hash = "sha256-mmOsN2mW6eGtapq3xLqHK8hhSD0Gjzp3DsY5AGUlI8g=";
};
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 ];
};
}