nixpkgs/pkgs/development/python-modules/pysonos/default.nix

43 lines
870 B
Nix
Raw Normal View History

2019-05-10 14:34:29 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, xmltodict
, requests
, ifaddr
# Test dependencies
, pytest, pylint, flake8, graphviz
2019-05-10 14:34:29 +01:00
, mock, sphinx, sphinx_rtd_theme
}:
buildPythonPackage rec {
pname = "pysonos";
version = "0.0.28";
2019-05-10 14:34:29 +01:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "09852c0bfe07e3529f8665527381f586c7ea3beabcd7291311e679d56459069d";
2019-05-10 14:34:29 +01:00
};
propagatedBuildInputs = [ xmltodict requests ifaddr ];
checkInputs = [
pytest pylint flake8 graphviz
2019-05-10 14:34:29 +01:00
mock sphinx sphinx_rtd_theme
];
checkPhase = ''
pytest --deselect=tests/test_discovery.py::TestDiscover::test_discover
'';
2019-05-10 14:34:29 +01:00
meta = {
homepage = "https://github.com/amelchio/pysonos";
2019-05-10 14:34:29 +01:00
description = "A SoCo fork with fixes for Home Assistant";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ juaningan ];
};
}