about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-mpv-jsonipc
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-06-15 13:12:45 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-06-15 22:03:10 +0200
commit7b4d273d3cf91498d0d6e90a4576317b136216fb (patch)
tree58bc3664dcd63f43ad149e6c377ce2beac279406 /pkgs/development/python-modules/python-mpv-jsonipc
parent48cc7f1d1c7cedc5849dde3ca017a423b814e4ee (diff)
pythonPackages: websocket_client -> websocket-client
Diffstat (limited to 'pkgs/development/python-modules/python-mpv-jsonipc')
-rw-r--r--pkgs/development/python-modules/python-mpv-jsonipc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-mpv-jsonipc/default.nix b/pkgs/development/python-modules/python-mpv-jsonipc/default.nix
index 82ee7e2092415..8c43d7a4ca275 100644
--- a/pkgs/development/python-modules/python-mpv-jsonipc/default.nix
+++ b/pkgs/development/python-modules/python-mpv-jsonipc/default.nix
@@ -1,5 +1,5 @@
 { lib, buildPythonPackage, fetchFromGitHub, requests
-, tqdm, websocket_client, pythonOlder }:
+, tqdm, websocket-client, pythonOlder }:
 
 buildPythonPackage rec {
   pname = "python-mpv-jsonipc";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
   # 'mpv-jsonipc' does not have any tests
   doCheck = false;
 
-  propagatedBuildInputs = [ requests tqdm websocket_client ];
+  propagatedBuildInputs = [ requests tqdm websocket-client ];
 
   pythonImportsCheck = [ "python_mpv_jsonipc" ];