lol

Merge pull request #260158 from fabaff/plexwebsocket-bump

python311Packages.plexwebsocket: 0.0.13 -> 0.0.14

authored by

Fabian Affolter and committed by
GitHub
fccc344a 23752229

+18 -9
+18 -9
pkgs/development/python-modules/plexwebsocket/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, aiohttp, isPy27 }: 2 3 buildPythonPackage rec { 4 pname = "plexwebsocket"; 5 - version = "0.0.13"; 6 - disabled = isPy27; 7 8 src = fetchFromGitHub { 9 owner = "jjlawren"; 10 repo = "python-plexwebsocket"; 11 - rev = "v${version}"; 12 - hash = "sha256-u9zO3d0d4Qg+u4ezVRGkNDpJqHkYIMrEMJzBK5WKk8Y="; 13 }; 14 15 - propagatedBuildInputs = [ aiohttp ]; 16 17 - # package does not include tests 18 doCheck = false; 19 20 - # at least guarantee the module can be imported 21 pythonImportsCheck = [ 22 "plexwebsocket" 23 ]; 24 25 meta = with lib; { 26 homepage = "https://github.com/jjlawren/python-plexwebsocket/"; 27 - description = "Async library to react to events issued over Plex websockets"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ colemickens ]; 30 };
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + }: 7 8 buildPythonPackage rec { 9 pname = "plexwebsocket"; 10 + version = "0.0.14"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 15 src = fetchFromGitHub { 16 owner = "jjlawren"; 17 repo = "python-plexwebsocket"; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-gT9RWpaR33ROs6ttjH2joNPi99Ng94Tp/R9eZY1eGZk="; 20 }; 21 22 + propagatedBuildInputs = [ 23 + aiohttp 24 + ]; 25 26 + # Package does not include tests 27 doCheck = false; 28 29 pythonImportsCheck = [ 30 "plexwebsocket" 31 ]; 32 33 meta = with lib; { 34 + description = "Library to react to events issued over Plex websockets"; 35 homepage = "https://github.com/jjlawren/python-plexwebsocket/"; 36 + changelog = "https://github.com/jjlawren/python-plexwebsocket/releases/tag/v${version}"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ colemickens ]; 39 };