python3Packages.snapcast: 2.1.1 -> 2.1.2

This commit is contained in:
Fabian Affolter 2021-03-17 00:08:40 +01:00 committed by Jonathan Ringer
parent 7bb990871d
commit b9eaf2867c

View File

@ -1,23 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, pytest
, construct }:
{ lib
, buildPythonPackage
, construct
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "snapcast";
version = "2.1.1";
version = "2.1.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "c3ecd63d997fbcf6e5322dc47c1f02615f1d9611cba01ec18e9c9f8c14ed824b";
sha256 = "sha256-ILBleqxEO7wTxAw/fvDW+4O4H4XWV5m5WWtaNeRBr4g=";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ construct ];
# no checks from Pypi - https://github.com/happyleavesaoc/python-snapcast/issues/23
doCheck = false;
pythonImportsCheck = [ "snapcast" ];
meta = with lib; {
description = "Control Snapcast, a multi-room synchronous audio solution";