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

35 lines
849 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, xmltodict, requests
# Test dependencies
, pytest, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
, sphinx_rtd_theme
}:
buildPythonPackage rec {
pname = "soco";
version = "0.17";
src = fetchPypi {
inherit pname version;
sha256 = "15zw6i5z5p8vsa3lp20rjizhv4lzz935r73im0xm6zsl71bsgvj8";
};
postPatch = ''
# https://github.com/SoCo/SoCo/pull/670
substituteInPlace requirements-dev.txt \
--replace "pytest-cov>=2.4.0,<2.6" "pytest-cov>=2.4.0"
'';
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;
};
}