fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
891 B
Nix
37 lines
891 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plexwebsocket";
|
|
version = "0.0.14";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jjlawren";
|
|
repo = "python-plexwebsocket";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-gT9RWpaR33ROs6ttjH2joNPi99Ng94Tp/R9eZY1eGZk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
|
|
|
# Package does not include tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "plexwebsocket" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to react to events issued over Plex websockets";
|
|
homepage = "https://github.com/jjlawren/python-plexwebsocket/";
|
|
changelog = "https://github.com/jjlawren/python-plexwebsocket/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ colemickens ];
|
|
};
|
|
}
|