summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-06-21 00:12:24 +0000
committerRobert Schütz <github@dotlambda.de>2022-07-03 14:21:30 +0000
commit72efc4014162474be930e39ae9a8454da904f17c (patch)
tree63dcaf3493cd9d64c8038f8688578aa944ac2ca0
parentMerge pull request #176339 from amjoseph-nixpkgs/pr/backport/174691 (diff)
downloadnixpkgs-72efc4014162474be930e39ae9a8454da904f17c.tar.gz
python310Packages.beaker: mark insecure
(cherry picked from commit 12fb03569f3ef59b627d9b03440809f0a97e759d)
-rw-r--r--pkgs/development/python-modules/beaker/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/beaker/default.nix b/pkgs/development/python-modules/beaker/default.nix
index c455ee50284a..9b692ef92f2a 100644
--- a/pkgs/development/python-modules/beaker/default.nix
+++ b/pkgs/development/python-modules/beaker/default.nix
@@ -70,6 +70,11 @@ buildPythonPackage rec {
meta = {
description = "A Session and Caching library with WSGI Middleware";
+ homepage = "https://github.com/bbangert/beaker";
+ license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ domenkozar ];
+ knownVulnerabilities = [
+ "CVE-2013-7489"
+ ];
};
}