3
0
Fork 0
forked from mirrors/nixpkgs

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