81047829ea
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
47 lines
874 B
Nix
47 lines
874 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, ifaddr
|
|
, poetry-core
|
|
, pythonOlder
|
|
, requests
|
|
, six
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "roonapi";
|
|
version = "0.0.39";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pavoni";
|
|
repo = "pyroon";
|
|
rev = version;
|
|
sha256 = "03m00qbdkm0vdflc48ds186kh9qjxqr6z602yn3l6fzj5f93zgh5";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ifaddr
|
|
requests
|
|
six
|
|
websocket-client
|
|
];
|
|
|
|
# Tests require access to the Roon API
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "roonapi" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to interface with the Roon API";
|
|
homepage = "https://github.com/pavoni/pyroon";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|