Skip to content

Commit

Permalink
Merge pull request #253954 from dotlambda/nixops_unstable-insecure
Browse files Browse the repository at this point in the history
nixops_unstable: mark cryptography insecure
  • Loading branch information
dotlambda authored Sep 9, 2023
2 parents c9bf6dd + e7aa53b commit c52f7e8
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions pkgs/applications/networking/cluster/nixops/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,12 @@ let
cryptography = super.cryptography.overridePythonAttrs (old: {
meta = old.meta // {
knownVulnerabilities = old.meta.knownVulnerabilities or [ ]
++ lib.optionals (lib.versionOlder old.version "39.0.1") [
"CVE-2022-4304"
"CVE-2023-0215"
"CVE-2023-0216"
"CVE-2023-0217"
"CVE-2023-0401"
"CVE-2022-4203"
"CVE-2022-4450"
"CVE-2023-23931"
++ lib.optionals (lib.versionOlder old.version "41.0.0") [
"CVE-2023-2650"
"CVE-2023-2975"
"CVE-2023-3446"
"CVE-2023-3817"
"CVE-2023-38325"
];
};
});
Expand Down

0 comments on commit c52f7e8

Please sign in to comment.