about summary refs log tree commit diff
path: root/pkgs/tools/security/trueseeing
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2022-09-10 14:33:46 +0200
committerAnthony Roussel <anthony@roussel.dev>2022-09-10 14:33:46 +0200
commite3fc2290e04a036c44b228324068491485e97bb5 (patch)
treeacfa60d7b382074eacc8d1d6099d4704c330a07c /pkgs/tools/security/trueseeing
parentd7a0533878b94db76f8b647836b499b04981e803 (diff)
trueseeing: 2.1.4 -> 2.1.5
Diffstat (limited to 'pkgs/tools/security/trueseeing')
-rw-r--r--pkgs/tools/security/trueseeing/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/tools/security/trueseeing/default.nix b/pkgs/tools/security/trueseeing/default.nix
index 4aa9e1852aeed..49b12c3c9d2f6 100644
--- a/pkgs/tools/security/trueseeing/default.nix
+++ b/pkgs/tools/security/trueseeing/default.nix
@@ -5,14 +5,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "trueseeing";
-  version = "2.1.4";
+  version = "2.1.5";
   format = "flit";
 
   src = fetchFromGitHub {
     owner = "alterakey";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-zc0AOv7OFmEPLl//eykbh538rM2j4kXBLHt5bgK1IRY=";
+    hash = "sha256-7iQOQ81k2bPBber4ewyvDy82s26j4P3Vv8MzSs04KAw=";
   };
 
   nativeBuildInputs = with python3.pkgs; [
@@ -26,8 +26,14 @@ python3.pkgs.buildPythonApplication rec {
     lxml
     pypubsub
     pyyaml
+    docker
   ];
 
+  postPatch = ''
+    substituteInPlace pyproject.toml \
+      --replace "attrs~=21.4" "attrs>=21.4"
+  '';
+
   # Project has no tests
   doCheck = false;