mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
nixops: mark insecure
This commit is contained in:
parent
b1e986f80e
commit
e174b463e7
1 changed files with 12 additions and 0 deletions
|
@ -6,6 +6,18 @@ let
|
||||||
inherit (poetry2nix.mkPoetryPackages {
|
inherit (poetry2nix.mkPoetryPackages {
|
||||||
projectDir = ./python-env;
|
projectDir = ./python-env;
|
||||||
python = python2;
|
python = python2;
|
||||||
|
overrides = [
|
||||||
|
poetry2nix.defaultPoetryOverrides
|
||||||
|
(self: super: {
|
||||||
|
pyjwt = super.pyjwt.overridePythonAttrs (old: {
|
||||||
|
meta = old.meta // {
|
||||||
|
knownVulnerabilities = lib.optionals (lib.versionOlder old.version "2.4.0") [
|
||||||
|
"CVE-2022-29217"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
}) python;
|
}) python;
|
||||||
pythonPackages = python.pkgs;
|
pythonPackages = python.pkgs;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue