Merge pull request #249058 from fabaff/checkov-bump

checkov: 2.3.361 -> 2.3.364

authored by Fabian Affolter and committed by GitHub 6df7fdc2 32c7b9a2

+31 -14
+29 -12
pkgs/development/python-modules/spdx-tools/default.nix
··· 1 { lib 2 - , buildPythonPackage 3 , beartype 4 , click 5 - , fetchPypi 6 , license-expression 7 , pyyaml 8 , rdflib 9 - , ply 10 , semantic-version 11 , xmltodict 12 - , pytestCheckHook 13 - , pythonOlder 14 - , uritools 15 }: 16 17 buildPythonPackage rec { 18 pname = "spdx-tools"; 19 version = "0.8.0"; 20 - format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; 23 24 - src = fetchPypi { 25 - inherit pname version; 26 - hash = "sha256-ZoCb94eDtHFH3K9ppju51WHrReay7BXC6P4VUOJK4c0="; 27 }; 28 29 propagatedBuildInputs = [ 30 beartype ··· 47 ]; 48 49 disabledTestPaths = [ 50 - # Depends on the currently not packaged pyshacl module. 51 "tests/spdx3/validation/json_ld/test_shacl_validation.py" 52 ]; 53 54 meta = with lib; { 55 description = "SPDX parser and tools"; 56 homepage = "https://github.com/spdx/tools-python"; 57 changelog = "https://github.com/spdx/tools-python/blob/v${version}/CHANGELOG.md"; 58 license = licenses.asl20; 59 - maintainers = [ ]; 60 }; 61 }
··· 1 { lib 2 , beartype 3 + , buildPythonPackage 4 , click 5 + , fetchFromGitHub 6 , license-expression 7 + , ply 8 + , pytestCheckHook 9 + , pythonOlder 10 , pyyaml 11 , rdflib 12 , semantic-version 13 + , setuptools 14 + , setuptools-scm 15 + , uritools 16 , xmltodict 17 }: 18 19 buildPythonPackage rec { 20 pname = "spdx-tools"; 21 version = "0.8.0"; 22 + format = "pyproject"; 23 24 disabled = pythonOlder "3.7"; 25 26 + src = fetchFromGitHub { 27 + owner = "spdx"; 28 + repo = "tools-python"; 29 + rev = "refs/tags/v${version}"; 30 + hash = "sha256-TMiaxapJuiLqm+x9K49MIzeWOE/CRAI+M1+9OeU0YvM="; 31 }; 32 + 33 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 34 + 35 + nativeBuildInputs = [ 36 + setuptools 37 + setuptools-scm 38 + ]; 39 40 propagatedBuildInputs = [ 41 beartype ··· 58 ]; 59 60 disabledTestPaths = [ 61 + # Test depends on the currently not packaged pyshacl module 62 "tests/spdx3/validation/json_ld/test_shacl_validation.py" 63 ]; 64 65 + disabledTests = [ 66 + # Missing files 67 + "test_spdx2_convert_to_spdx3" 68 + "test_json_writer" 69 + ]; 70 + 71 meta = with lib; { 72 description = "SPDX parser and tools"; 73 homepage = "https://github.com/spdx/tools-python"; 74 changelog = "https://github.com/spdx/tools-python/blob/v${version}/CHANGELOG.md"; 75 license = licenses.asl20; 76 + maintainers = with maintainers; [ fab ]; 77 }; 78 }
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 - version = "2.3.361"; 26 format = "setuptools"; 27 28 src = fetchFromGitHub { 29 owner = "bridgecrewio"; 30 repo = pname; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-k357VjGB+mKsKsd+l0S2lMh1f5za5Htlm4AWEVisQss="; 33 }; 34 35 patches = [
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 + version = "2.3.364"; 26 format = "setuptools"; 27 28 src = fetchFromGitHub { 29 owner = "bridgecrewio"; 30 repo = pname; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-pec8JLFLqhe75G2Tk/3EwGYr9Dg2xgT8MlVS471QH60="; 33 }; 34 35 patches = [