about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-08-08 22:16:57 +0200
committerGitHub <noreply@github.com>2023-08-08 22:16:57 +0200
commita033a771cdc3783d4e78d3de64cdc139ef1f4e3b (patch)
treeaae473c6d23e5f5fea34e745492c09730766818b /pkgs
parent273573ebcc591d84056fc22a864d7d2c2742418b (diff)
parent33836f610fcfba92cab749531805241f26c69f43 (diff)
Merge pull request #247872 from fabaff/alexapy-bump
python311Packages.alexapy: 1.26.8 -> 1.26.9
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/alexapy/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/alexapy/default.nix b/pkgs/development/python-modules/alexapy/default.nix
index 559e00e3c81ce..d5e6f93ebefd5 100644
--- a/pkgs/development/python-modules/alexapy/default.nix
+++ b/pkgs/development/python-modules/alexapy/default.nix
@@ -8,7 +8,6 @@
 , certifi
 , cryptography
 , fetchFromGitLab
-, fetchpatch
 , poetry-core
 , pyotp
 , pythonOlder
@@ -20,7 +19,7 @@
 
 buildPythonPackage rec {
   pname = "alexapy";
-  version = "1.26.8";
+  version = "1.26.9";
   format = "pyproject";
 
   disabled = pythonOlder "3.10";
@@ -29,18 +28,9 @@ buildPythonPackage rec {
     owner = "keatontaylor";
     repo = "alexapy";
     rev = "refs/tags/v${version}";
-    hash = "sha256-AjtSEqUbJ5e/TZIYMX+pwBSH35tEVrfCA6H/55yrZsk=";
+    hash = "sha256-mDh4kYwRXpvVCh+nBmQblmlmgG98P6+UmgG4ZioQ68M=";
   };
 
-  patches = [
-    # Switch to poetry-core, https://gitlab.com/keatontaylor/alexapy/-/merge_requests/342
-    (fetchpatch {
-      name = "switch-poetry-core.patch";
-      url = "https://gitlab.com/keatontaylor/alexapy/-/commit/843daec4ba1fb219f1c4f4a6ca01c9af73014e53.patch";
-      hash = "sha256-wlCq0/NJx4Adh/o61FSMWMQU99PZkJ0U2yqxqOfvAa8=";
-    })
-  ];
-
   pythonRelaxDeps = [
     "aiofiles"
   ];