pythonPackages.jellyfin-apiclient-python: 1.6.1 -> 1.6.2
This commit is contained in:
parent
ddb1c81c07
commit
5854e45418
1 changed files with 6 additions and 7 deletions
|
@ -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; {
|
||||||
|
|
Loading…
Reference in a new issue