nixpkgs/pkgs/development/python-modules/soco/default.nix
Robert Schütz 4348c8a0ba python.pkgs.soco: use pytest_3
Otherwise, we get
    [pytest] section in setup.cfg files is no longer supported,
    change to [tool:pytest] instead
2019-02-20 19:59:30 +01:00

29 lines
691 B
Nix

{ lib, buildPythonPackage, fetchPypi, xmltodict, requests
# Test dependencies
, pytest_3, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
, sphinx_rtd_theme
}:
buildPythonPackage rec {
pname = "soco";
version = "0.16";
src = fetchPypi {
inherit pname version;
sha256 = "7bed4475e3f134283af1f520a9b2e6ce2a8e69bdc1b58ee68528b3d093972424";
};
propagatedBuildInputs = [ xmltodict requests ];
checkInputs = [
pytest_3 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;
};
}