d15ba6a7ee
This is required for one of the plugins (sonosupdate) of Beets version 1.4.7. I do not have a Sonos speaker, so I can't really test whether the library works nor properly maintain this package (so I didn't add myself as a maintainer). I ran the build (including tests) against Python 2.x and Python 3.x. Signed-off-by: aszlig <aszlig@nix.build>
29 lines
675 B
Nix
29 lines
675 B
Nix
{ lib, buildPythonPackage, fetchPypi, xmltodict, requests
|
|
|
|
# Test dependencies
|
|
, pytest, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
|
|
, sphinx_rtd_theme
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "soco";
|
|
version = "0.15";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "18bxpbd7l9gns0jpvx09z023kbbz7b6i4f99i8silsb1jv682kg0";
|
|
};
|
|
|
|
propagatedBuildInputs = [ xmltodict requests ];
|
|
checkInputs = [
|
|
pytest pytestcov coveralls pylint flake8 graphviz mock sphinx
|
|
sphinx_rtd_theme
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://python-soco.com/;
|
|
description = "A CLI and library to control Sonos speakers";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|