python3Packages.snapcast: 2.1.2 -> 2.1.3

This commit is contained in:
Fabian Affolter 2021-04-22 21:05:01 +02:00
parent 155101e356
commit 2bfeb38f6b

View File

@ -1,24 +1,31 @@
{ lib
, buildPythonPackage
, construct
, fetchPypi
, fetchFromGitHub
, isPy3k
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "snapcast";
version = "2.1.2";
version = "2.1.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ILBleqxEO7wTxAw/fvDW+4O4H4XWV5m5WWtaNeRBr4g=";
src = fetchFromGitHub {
owner = "happyleavesaoc";
repo = "python-snapcast";
rev = version;
sha256 = "1jigdccdd7bffszim942mxcwxyznfjx7y3r5yklz3psl7zgbzd6c";
};
propagatedBuildInputs = [ construct ];
propagatedBuildInputs = [
construct
];
checkInputs = [
pytestCheckHook
];
# no checks from Pypi - https://github.com/happyleavesaoc/python-snapcast/issues/23
doCheck = false;
pythonImportsCheck = [ "snapcast" ];
meta = with lib; {