nixpkgs/pkgs/development/python-modules/python-mpv-jsonipc/default.nix
Wolfgang Walther c283f32d29
treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

42 lines
813 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
tqdm,
websocket-client,
pythonOlder,
}:
buildPythonPackage rec {
pname = "python-mpv-jsonipc";
version = "1.2.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "iwalton3";
repo = "python-mpv-jsonipc";
rev = "v${version}";
hash = "sha256-ugdLUmo5w+IbtmL2b6+la1X01mWNmnXr9j6e99oPWpE=";
};
# 'mpv-jsonipc' does not have any tests
doCheck = false;
propagatedBuildInputs = [
requests
tqdm
websocket-client
];
pythonImportsCheck = [ "python_mpv_jsonipc" ];
meta = with lib; {
homepage = "https://github.com/iwalton3/python-mpv-jsonipc";
description = "Python API to MPV using JSON IPC";
license = licenses.gpl3;
maintainers = [ ];
};
}