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