mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
793 B
Nix
30 lines
793 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, requests
|
|
, tqdm, websocket_client, pythonOlder }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-mpv-jsonipc";
|
|
version = "1.1.8";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iwalton3";
|
|
repo = "python-mpv-jsonipc";
|
|
rev = "v${version}";
|
|
sha256 = "0f4nfzfka5n76n6dxmgcz0rkaws7a3jrgyh00va6lnfi7h6dsmx4";
|
|
};
|
|
|
|
# '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 = with maintainers; [ colemickens ];
|
|
};
|
|
}
|