python/soco: init at 0.15

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>
This commit is contained in:
aszlig 2018-06-29 21:04:42 +02:00
parent 2059bf9e39
commit d15ba6a7ee
No known key found for this signature in database
GPG Key ID: 684089CE67EBB691
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ 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;
};
}

View File

@ -12860,6 +12860,8 @@ in {
shapely = callPackage ../development/python-modules/shapely { };
soco = callPackage ../development/python-modules/soco { };
sopel = buildPythonPackage rec {
name = "sopel-6.3.1";