pythonPackages.pysonos: init at 0.0.13
This commit is contained in:
parent
1a046e14a0
commit
912856f40f
38
pkgs/development/python-modules/pysonos/default.nix
Normal file
38
pkgs/development/python-modules/pysonos/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, xmltodict
|
||||
, requests
|
||||
, ifaddr
|
||||
|
||||
# Test dependencies
|
||||
, pytest_3, pylint, flake8, graphviz
|
||||
, mock, sphinx, sphinx_rtd_theme
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysonos";
|
||||
version = "0.0.13";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0azkbd20qdzdilv5pi4qngw7pjjcsv269dim7xh3qv7s9bp0xik8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ xmltodict requests ifaddr ];
|
||||
|
||||
checkInputs = [
|
||||
pytest_3 pylint flake8 graphviz
|
||||
mock sphinx sphinx_rtd_theme
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/amelchio/pysonos;
|
||||
description = "A SoCo fork with fixes for Home Assistant";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ juaningan ];
|
||||
};
|
||||
}
|
@ -4008,6 +4008,8 @@ in {
|
||||
|
||||
pyserial = callPackage ../development/python-modules/pyserial {};
|
||||
|
||||
pysonos = callPackage ../development/python-modules/pysonos {};
|
||||
|
||||
pymongo = callPackage ../development/python-modules/pymongo {};
|
||||
|
||||
pyperclip = callPackage ../development/python-modules/pyperclip { };
|
||||
|
Loading…
Reference in New Issue
Block a user