about summary refs log tree commit diff
path: root/pkgs/development/python-modules/radios/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/radios/default.nix')
-rw-r--r--pkgs/development/python-modules/radios/default.nix42
1 files changed, 19 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/radios/default.nix b/pkgs/development/python-modules/radios/default.nix
index 5831579f7df56..241e95a189852 100644
--- a/pkgs/development/python-modules/radios/default.nix
+++ b/pkgs/development/python-modules/radios/default.nix
@@ -1,21 +1,21 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchFromGitHub
-, poetry-core
-, pythonRelaxDepsHook
-, aiodns
-, aiohttp
-, awesomeversion
-, backoff
-, cachetools
-, mashumaro
-, orjson
-, pycountry
-, yarl
-, aresponses
-, pytest-asyncio
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  pythonOlder,
+  fetchFromGitHub,
+  poetry-core,
+  aiodns,
+  aiohttp,
+  awesomeversion,
+  backoff,
+  cachetools,
+  mashumaro,
+  orjson,
+  pycountry,
+  yarl,
+  aresponses,
+  pytest-asyncio,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -25,7 +25,6 @@ buildPythonPackage rec {
 
   disabled = pythonOlder "3.11";
 
-
   src = fetchFromGitHub {
     owner = "frenck";
     repo = "python-radios";
@@ -41,12 +40,9 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [
     poetry-core
-    pythonRelaxDepsHook
   ];
 
-  pythonRelaxDeps = [
-    "pycountry"
-  ];
+  pythonRelaxDeps = [ "pycountry" ];
 
   propagatedBuildInputs = [
     aiodns