Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / flask-talisman / default.nix
blob76a79e5f091112405410b8c8ac77789322854ebb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flask
5 , six
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "flask-talisman";
11   version = "1.1.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-xfSG9fVEIHKfhLPDhQzWP5bosDOpYpvuZsUk6jY3l/8=";
17   };
19   buildInputs = [
20     flask
21   ];
23   propagatedBuildInputs = [
24     six
25   ];
27   nativeBuildInputs = [
28     pytestCheckHook
29   ];
31   meta = with lib; {
32     description = "HTTP security headers for Flask";
33     homepage = "https://github.com/wntrblm/flask-talisman";
34     license = licenses.asl20;
35     maintainers = [ lib.maintainers.symphorien ];
36   };