mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.snapcast: 2.1.1 -> 2.1.2
This commit is contained in:
parent
7bb990871d
commit
b9eaf2867c
@ -1,23 +1,25 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k, pytest
|
{ lib
|
||||||
, construct }:
|
, buildPythonPackage
|
||||||
|
, construct
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "snapcast";
|
pname = "snapcast";
|
||||||
version = "2.1.1";
|
version = "2.1.2";
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "c3ecd63d997fbcf6e5322dc47c1f02615f1d9611cba01ec18e9c9f8c14ed824b";
|
sha256 = "sha256-ILBleqxEO7wTxAw/fvDW+4O4H4XWV5m5WWtaNeRBr4g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ construct ];
|
propagatedBuildInputs = [ construct ];
|
||||||
|
|
||||||
# no checks from Pypi - https://github.com/happyleavesaoc/python-snapcast/issues/23
|
# no checks from Pypi - https://github.com/happyleavesaoc/python-snapcast/issues/23
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "snapcast" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Control Snapcast, a multi-room synchronous audio solution";
|
description = "Control Snapcast, a multi-room synchronous audio solution";
|
||||||
|
Loading…
Reference in New Issue
Block a user