biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / flask-paranoid / default.nix
blob0e4d49127ae95238cfcf2677f6bb8ca656d4244f
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flask,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "flask-paranoid";
11   version = "0.3.0";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "miguelgrinberg";
16     repo = pname;
17     rev = "v${version}";
18     hash = "sha256-tikD8efc3Q3xIQnaC3SSBaCRQxMI1HzXxeupvYeNnE4=";
19   };
21   postPatch = ''
22     # tests have a typo in one of the assertions
23     substituteInPlace tests/test_paranoid.py --replace "01-Jan-1970" "01 Jan 1970"
24   '';
26   propagatedBuildInputs = [ flask ];
28   nativeCheckInputs = [ pytestCheckHook ];
30   pythonImportsCheck = [ "flask_paranoid" ];
32   meta = with lib; {
33     homepage = "https://github.com/miguelgrinberg/flask-paranoid/";
34     description = "Simple user session protection";
35     license = licenses.mit;
36     maintainers = with maintainers; [ gador ];
37   };