e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
51 lines
953 B
Nix
51 lines
953 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, ifaddr
|
|
, poetry-core
|
|
, pythonOlder
|
|
, requests
|
|
, six
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "roonapi";
|
|
version = "0.1.6";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pavoni";
|
|
repo = "pyroon";
|
|
rev = version;
|
|
hash = "sha256-6wQsaZ50J2xIPXzICglg5pf8U0r4tL8iqcbdwjZadwU=";
|
|
};
|
|
|
|
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";
|
|
changelog = "https://github.com/pavoni/pyroon/releases/tag/${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|