Merge pull request #278045 from fabaff/trueseeing-bump

trueseeing: 2.1.7 -> 2.1.9

authored by Fabian Affolter and committed by GitHub 2a3d76fa 435bb9e7

+9 -11
+9 -11
pkgs/tools/security/trueseeing/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "trueseeing"; 8 - version = "2.1.7"; 9 - format = "pyproject"; 10 11 src = fetchFromGitHub { 12 owner = "alterakey"; 13 - repo = pname; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-pnIn+Rqun5J3F9cgeBUBX4e9WP5fgbm+vwN3Wqh/yEc="; 16 }; 17 18 nativeBuildInputs = with python3.pkgs; [ 19 flit-core 20 ]; ··· 26 lxml 27 pypubsub 28 pyyaml 29 - docker 30 ]; 31 - 32 - postPatch = '' 33 - substituteInPlace pyproject.toml \ 34 - --replace "attrs~=21.4" "attrs>=21.4" \ 35 - --replace "docker~=5.0.3" "docker" 36 - ''; 37 38 # Project has no tests 39 doCheck = false;
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "trueseeing"; 8 + version = "2.1.9"; 9 + pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "alterakey"; 13 + repo = "trueseeing"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-g5OqdnPtGGV4wBwPRAjH3lweguwlfVcgpNLlq54OHKA="; 16 }; 17 18 + postPatch = '' 19 + substituteInPlace pyproject.toml \ 20 + --replace "attrs~=21.4" "attrs>=21.4" 21 + ''; 22 + 23 nativeBuildInputs = with python3.pkgs; [ 24 flit-core 25 ]; ··· 31 lxml 32 pypubsub 33 pyyaml 34 ]; 35 36 # Project has no tests 37 doCheck = false;