5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
59 lines
1 KiB
Nix
59 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, graphviz
|
|
, appdirs
|
|
, ifaddr
|
|
, pythonOlder
|
|
, lxml
|
|
, mock
|
|
, nix-update-script
|
|
, pytestCheckHook
|
|
, requests
|
|
, requests-mock
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "soco";
|
|
version = "0.29.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SoCo";
|
|
repo = "SoCo";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Kp9rG7fJzvmnLpjVulf9kODoABdjaaHvgyed9I+FHVA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
ifaddr
|
|
lxml
|
|
requests
|
|
xmltodict
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
graphviz
|
|
mock
|
|
requests-mock
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"soco"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "CLI and library to control Sonos speakers";
|
|
homepage = "http://python-soco.com/";
|
|
changelog = "https://github.com/SoCo/SoCo/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|