python311Packages.plexwebsocket: add changelog to meta
This commit is contained in:
parent
99c8e6c565
commit
692d9b3c0a
1 changed files with 11 additions and 3 deletions
|
@ -1,4 +1,9 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, aiohttp, isPy27 }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, aiohttp
|
||||
, isPy27
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "plexwebsocket";
|
||||
|
@ -8,11 +13,13 @@ buildPythonPackage rec {
|
|||
src = fetchFromGitHub {
|
||||
owner = "jjlawren";
|
||||
repo = "python-plexwebsocket";
|
||||
rev = "v${version}";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-gT9RWpaR33ROs6ttjH2joNPi99Ng94Tp/R9eZY1eGZk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ aiohttp ];
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
];
|
||||
|
||||
# package does not include tests
|
||||
doCheck = false;
|
||||
|
@ -25,6 +32,7 @@ buildPythonPackage rec {
|
|||
meta = with lib; {
|
||||
homepage = "https://github.com/jjlawren/python-plexwebsocket/";
|
||||
description = "Async library to react to events issued over Plex websockets";
|
||||
changelog = "https://github.com/jjlawren/python-plexwebsocket/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ colemickens ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue