Merge pull request #160886 from r-ryantm/auto-update/python3.10-soco

python310Packages.soco: 0.26.2 -> 0.26.3
This commit is contained in:
Fabian Affolter 2022-02-19 20:57:46 +01:00 committed by GitHub
commit fa102023f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,14 +15,16 @@
buildPythonPackage rec {
pname = "soco";
version = "0.26.2";
version = "0.26.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "SoCo";
repo = "SoCo";
rev = "v${version}";
sha256 = "sha256-VOGdv3g11OzNeTlBwm8hRy6fThDKVKIlgQxR4b07y/8=";
hash = "sha256-tMW5SCsO1XMQdbasMw3qIMwj+Y6wTQHAmTZ+9r8Mffs=";
};
propagatedBuildInputs = [
@ -39,15 +41,17 @@ buildPythonPackage rec {
requests-mock
];
pythonImportsCheck = [ "soco" ];
pythonImportsCheck = [
"soco"
];
passthru.updateScript = nix-update-script {
attrPath = "python3Packages.${pname}";
};
meta = with lib; {
description = "CLI and library to control Sonos speakers";
homepage = "http://python-soco.com/";
description = "A CLI and library to control Sonos speakers";
license = licenses.mit;
maintainers = with maintainers; [ lovesegfault ];
};