pythonPackages.jellyfin-apiclient-python: 1.6.1 -> 1.6.2

This commit is contained in:
Johannes Schleifenbaum 2021-03-10 12:39:27 +01:00
parent ddb1c81c07
commit 5854e45418
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0

View file

@ -1,20 +1,19 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests { lib, buildPythonPackage, fetchPypi, requests
, websocket_client, pythonOlder }: , websocket_client, pythonOlder }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jellyfin-apiclient-python"; pname = "jellyfin-apiclient-python";
version = "1.6.1"; version = "1.6.2";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchPypi {
owner = "iwalton3"; inherit pname version;
repo = "jellyfin-apiclient-python"; sha256 = "sha256-tFYMQYbnFTJTkZtJ+ZASWL6qsf/CK7EzTYukZm/wBgI=";
rev = "v${version}";
sha256 = "0f7czq83ic22fz1vnf0cavb7l3grcxxd5yyw9wcjz3g1j2d76735";
}; };
propagatedBuildInputs = [ requests websocket_client ]; propagatedBuildInputs = [ requests websocket_client ];
doCheck = false; # no tests
pythonImportsCheck = [ "jellyfin_apiclient_python" ]; pythonImportsCheck = [ "jellyfin_apiclient_python" ];
meta = with lib; { meta = with lib; {