blob: 522f939ab2e650d5e700fc9728b53fe41868fc32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
flask,
six,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "flask-talisman";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-xfSG9fVEIHKfhLPDhQzWP5bosDOpYpvuZsUk6jY3l/8=";
};
buildInputs = [ flask ];
propagatedBuildInputs = [ six ];
nativeBuildInputs = [ pytestCheckHook ];
meta = {
description = "HTTP security headers for Flask";
homepage = "https://github.com/wntrblm/flask-talisman";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.symphorien ];
};
}
|