python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / audio / soco-cli / default.nix
blob52614a8dc2201d6293bdbd1588c8fd58ca21ba92
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "soco-cli";
8   version = "0.4.21";
9   format = "setuptools";
11   disabled = python3.pythonOlder "3.6";
13   src = fetchFromGitHub rec {
14     owner = "avantrec";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "1kz2zx59gjfs01jiyzmps8j6yca06yqn6wkidvdk4s3izdm0rarw";
18   };
20   propagatedBuildInputs = with python3.pkgs; [
21     fastapi
22     rangehttpserver
23     soco
24     tabulate
25     uvicorn
26   ];
28   # Tests wants to communicate with hardware
29   doCheck = false;
31   pythonImportsCheck = [
32     "soco_cli"
33   ];
35   meta = with lib; {
36     description = "Command-line interface to control Sonos sound systems";
37     homepage = "https://github.com/avantrec/soco-cli";
38     license = with licenses; [ asl20 ];
39     maintainers = with maintainers; [ fab ];
40   };