summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-21 08:59:28 -0500
committerGitHub <noreply@github.com>2023-11-21 08:59:28 -0500
commit86a0857c23cfe20f49cdb08e5232163566d7d6eb (patch)
treeff997b8526fd1a18e0454b05f161cf9358156fa3
parent20953fd99d3d25d501facac8f28e266f482fc3af (diff)
parent5adcb43d51fb63e17e27e0d1beda35e7a2569a46 (diff)
Merge pull request #268897 from fabaff/xkcdpass-bump
python311Packages.xkcdpass: 1.19.5 -> 1.19.6
-rw-r--r--pkgs/development/python-modules/xkcdpass/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/xkcdpass/default.nix b/pkgs/development/python-modules/xkcdpass/default.nix
index 5b253d3260a89..d4a04317ad800 100644
--- a/pkgs/development/python-modules/xkcdpass/default.nix
+++ b/pkgs/development/python-modules/xkcdpass/default.nix
@@ -1,7 +1,6 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, fetchpatch
 , installShellFiles
 , pytestCheckHook
 , pythonAtLeast
@@ -10,24 +9,16 @@
 
 buildPythonPackage rec {
   pname = "xkcdpass";
-  version = "1.19.5";
+  version = "1.19.6";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-zEgC3tTQ6kwDovHPHRTvYndWVF79DpnAX454VDZiedE=";
+    hash = "sha256-zrdR4KuORCGIoRTZDednT9JDV/seWQRa3aPal8gxdTE=";
   };
 
-  patches = [
-    (fetchpatch {
-      name = "fix-non-deterministic-test.patch";
-      url = "https://github.com/redacted/XKCD-password-generator/commit/72d174a82822af1934c94de1b66fd956230142f5.patch";
-      hash = "sha256-GES40GHM0+Zx8bRceCy9/fOHJVlWZ7TCLfzhZczjfTE=";
-    })
-  ];
-
   nativeBuildInputs = [
     installShellFiles
   ];