about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyatv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyatv/default.nix')
-rw-r--r--pkgs/development/python-modules/pyatv/default.nix20
1 files changed, 6 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/pyatv/default.nix b/pkgs/development/python-modules/pyatv/default.nix
index 054eec8fe72e0..eea3e1c697023 100644
--- a/pkgs/development/python-modules/pyatv/default.nix
+++ b/pkgs/development/python-modules/pyatv/default.nix
@@ -18,7 +18,6 @@
   pytest-httpserver,
   pytest-timeout,
   pytestCheckHook,
-  pythonRelaxDepsHook,
   pythonAtLeast,
   pythonOlder,
   requests,
@@ -31,7 +30,7 @@
 
 buildPythonPackage rec {
   pname = "pyatv";
-  version = "0.14.5";
+  version = "0.15.0";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -40,12 +39,12 @@ buildPythonPackage rec {
     owner = "postlund";
     repo = "pyatv";
     rev = "refs/tags/v${version}";
-    hash = "sha256-Uykj9MIUFcZyTWOBjUhL9+qItbnpwtuTd2Cx5jI7Wtw=";
+    hash = "sha256-59XDh+TA4UYzfLJtbTiMC6Wz7EvUW22ONM4JQw5t/5o=";
   };
 
   postPatch = ''
     substituteInPlace setup.py \
-      --replace "pytest-runner" ""
+      --replace-fail "pytest-runner" ""
   '';
 
   pythonRelaxDeps = [
@@ -63,12 +62,9 @@ buildPythonPackage rec {
     "zeroconf"
   ];
 
-  nativeBuildInputs = [
-    pythonRelaxDepsHook
-    setuptools
-  ];
+  build-system = [ setuptools ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     aiohttp
     async-timeout
     chacha20poly1305-reuseable
@@ -95,11 +91,7 @@ buildPythonPackage rec {
   ];
 
   disabledTests =
-    [
-      # https://github.com/postlund/pyatv/issues/2307
-      "test_zeroconf_service_published"
-    ]
-    ++ lib.optionals (pythonAtLeast "3.12") [
+    lib.optionals (pythonAtLeast "3.12") [
       # https://github.com/postlund/pyatv/issues/2365
       "test_simple_dispatch"
     ]