mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
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:
parent
2059bf9e39
commit
d15ba6a7ee
28
pkgs/development/python-modules/soco/default.nix
Normal file
28
pkgs/development/python-modules/soco/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -12860,6 +12860,8 @@ in {
|
|||||||
|
|
||||||
shapely = callPackage ../development/python-modules/shapely { };
|
shapely = callPackage ../development/python-modules/shapely { };
|
||||||
|
|
||||||
|
soco = callPackage ../development/python-modules/soco { };
|
||||||
|
|
||||||
sopel = buildPythonPackage rec {
|
sopel = buildPythonPackage rec {
|
||||||
name = "sopel-6.3.1";
|
name = "sopel-6.3.1";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user