summary refs log blame commit diff
path: root/pkgs/development/python-modules/snapcast/default.nix
blob: 1e008d96497bb8cd818abd141d2a081cbf9596ac (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                                       
                     




                          
                                                                                















                                                                                     
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, pytest
, construct }:

buildPythonPackage rec {
  pname = "snapcast";
  version = "2.0.10";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "2a862a57ca65aa11cf010a19cdfee37e5728d486ee92684b00233442613b5120";
  };

  checkInputs = [ pytest ];

  propagatedBuildInputs = [ construct ];

  # no checks from Pypi - https://github.com/happyleavesaoc/python-snapcast/issues/23
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Control Snapcast, a multi-room synchronous audio solution";
    homepage = https://github.com/happyleavesaoc/python-snapcast/;
    license = licenses.mit;
    maintainers = with maintainers; [ peterhoeg ];
  };
}