Merge pull request #260158 from fabaff/plexwebsocket-bump
python311Packages.plexwebsocket: 0.0.13 -> 0.0.14
This commit is contained in:
commit
fccc344a69
1 changed files with 18 additions and 9 deletions
|
@ -1,30 +1,39 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, aiohttp, isPy27 }:
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "plexwebsocket";
|
pname = "plexwebsocket";
|
||||||
version = "0.0.13";
|
version = "0.0.14";
|
||||||
disabled = isPy27;
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jjlawren";
|
owner = "jjlawren";
|
||||||
repo = "python-plexwebsocket";
|
repo = "python-plexwebsocket";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-u9zO3d0d4Qg+u4ezVRGkNDpJqHkYIMrEMJzBK5WKk8Y=";
|
hash = "sha256-gT9RWpaR33ROs6ttjH2joNPi99Ng94Tp/R9eZY1eGZk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp ];
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
# package does not include tests
|
# Package does not include tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
# at least guarantee the module can be imported
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"plexwebsocket"
|
"plexwebsocket"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Library to react to events issued over Plex websockets";
|
||||||
homepage = "https://github.com/jjlawren/python-plexwebsocket/";
|
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;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ colemickens ];
|
maintainers = with maintainers; [ colemickens ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue