about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-01-18 15:40:56 +0100
committerGitHub <noreply@github.com>2024-01-18 15:40:56 +0100
commit596c7486aa58d29941ef9af26616b0d9d03c6a6a (patch)
tree8af370cd91968b30d060f3a9d37551a7f3eb5158 /pkgs
parentb7b4320dd6ac5243cb8407e7aca8459fe7494791 (diff)
parentb9915ba2635d44afe6218528103d738e67194b55 (diff)
Merge pull request #281703 from fabaff/aiounifi-bump
python311Packages.aiounifi: 68 -> 69
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/aiounifi/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix
index f88afc0558396..cf1615734d202 100644
--- a/pkgs/development/python-modules/aiounifi/default.nix
+++ b/pkgs/development/python-modules/aiounifi/default.nix
@@ -11,21 +11,20 @@
 , segno
 , setuptools
 , trustme
-, wheel
 }:
 
 buildPythonPackage rec {
   pname = "aiounifi";
-  version = "68";
-  format = "pyproject";
+  version = "69";
+  pyproject = true;
 
   disabled = pythonOlder "3.11";
 
   src = fetchFromGitHub {
     owner = "Kane610";
-    repo = pname;
+    repo = "aiounifi";
     rev = "refs/tags/v${version}";
-    hash = "sha256-fMTkk2+4RQzE8V4Nemkh2/0Keum+3eMKO5LlPQB9kOU=";
+    hash = "sha256-XYwdnG3OprHRZm3zQgoPw4VOzvvVflsQzi7+XQiASAU=";
   };
 
   postPatch = ''
@@ -38,7 +37,6 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [
     setuptools
-    wheel
   ];
 
   propagatedBuildInputs = [