nixpkgs/pkgs/development/python-modules/flask-paranoid/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

41 lines
865 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, flask
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "flask-paranoid";
version = "0.3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = pname;
rev = "v${version}";
hash = "sha256-tikD8efc3Q3xIQnaC3SSBaCRQxMI1HzXxeupvYeNnE4=";
};
postPatch = ''
# tests have a typo in one of the assertions
substituteInPlace tests/test_paranoid.py --replace "01-Jan-1970" "01 Jan 1970"
'';
propagatedBuildInputs = [
flask
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "flask_paranoid" ];
meta = with lib; {
homepage = "https://github.com/miguelgrinberg/flask-paranoid/";
description = "Simple user session protection";
license = licenses.mit;
maintainers = with maintainers; [ gador ];
};
}