about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-02-12 00:18:05 +0100
committerGitHub <noreply@github.com>2024-02-12 00:18:05 +0100
commit95f406aaff1e91110dfbed3b731a0e86449fb9cc (patch)
tree355cc91afdc36c9e7aeb5ee11e8235433ef0e494
parent71ee2a9727a8e9a02a6eb1b76a085c83c564687a (diff)
parenta071507ce6a8e33c8ce45aa184a9bf0fdcdea0d5 (diff)
downloadnixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.tar
nixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.tar.gz
nixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.tar.bz2
nixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.tar.lz
nixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.tar.xz
nixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.tar.zst
nixlib-95f406aaff1e91110dfbed3b731a0e86449fb9cc.zip
Merge pull request #288096 from fabaff/aiopegelonline-bump
python311Packages.aiopegelonline: 0.0.7 -> 0.0.8
-rw-r--r--pkgs/development/python-modules/aiopegelonline/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiopegelonline/default.nix b/pkgs/development/python-modules/aiopegelonline/default.nix
index a596791e74c0..b46746f50b85 100644
--- a/pkgs/development/python-modules/aiopegelonline/default.nix
+++ b/pkgs/development/python-modules/aiopegelonline/default.nix
@@ -6,12 +6,13 @@
 , pytest-asyncio
 , pytestCheckHook
 , pythonOlder
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "aiopegelonline";
-  version = "0.0.7";
-  format = "setuptools";
+  version = "0.0.8";
+  pyproject = true;
 
   disabled = pythonOlder "3.9";
 
@@ -19,9 +20,13 @@ buildPythonPackage rec {
     owner = "mib1185";
     repo = "aiopegelonline";
     rev = "refs/tags/v${version}";
-    hash = "sha256-r+5b52N/vliKHx6qOLJ4lWcQt1TPEcn5Dz7cZNhRbNg=";
+    hash = "sha256-Z/3IF5AwiNB+h8wug+57OVdLpFxGoiUe2xG4euHT1Bw=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
     aiohttp
   ];