lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #176420 from dotlambda/nixops-insecure

nixops: mark insecure

authored by

Robert Schütz and committed by
GitHub
b1d10e82 753b3c2b

+15
+3
pkgs/development/python2-modules/pyjwt/default.nix
··· 40 40 description = "JSON Web Token implementation in Python"; 41 41 homepage = "https://github.com/jpadilla/pyjwt"; 42 42 license = licenses.mit; 43 + knownVulnerabilities = [ 44 + "CVE-2022-29217" 45 + ]; 43 46 }; 44 47 }
+12
pkgs/tools/package-management/nixops/default.nix
··· 6 6 inherit (poetry2nix.mkPoetryPackages { 7 7 projectDir = ./python-env; 8 8 python = python2; 9 + overrides = [ 10 + poetry2nix.defaultPoetryOverrides 11 + (self: super: { 12 + pyjwt = super.pyjwt.overridePythonAttrs (old: { 13 + meta = old.meta // { 14 + knownVulnerabilities = lib.optionals (lib.versionOlder old.version "2.4.0") [ 15 + "CVE-2022-29217" 16 + ]; 17 + }; 18 + }); 19 + }) 20 + ]; 9 21 }) python; 10 22 pythonPackages = python.pkgs; 11 23