36 lines
676 B
Nix
36 lines
676 B
Nix
{ lib
|
|
, aiohttp
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyemby";
|
|
version = "1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mezz64";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "04fvpv3fz4q160s4ikldwxflxl1zbxgfgy9qs6grgpnd23p0ylk8";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-timeout
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyemby" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to interface with the Emby API";
|
|
homepage = "https://github.com/mezz64/pyemby";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|