mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 19:53:43 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
45 lines
820 B
Nix
45 lines
820 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, enum-compat
|
|
, requests
|
|
, websocket-client
|
|
, zeroconf
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libsoundtouch";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CharlesBlonde";
|
|
repo = "libsoundtouch";
|
|
rev = version;
|
|
sha256 = "1wl2w5xfdkrv0qzsz084z2k6sycfyq62mqqgciycha3dywf2fvva";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
enum-compat
|
|
websocket-client
|
|
zeroconf
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# mock data order mismatch
|
|
"test_select_content_item"
|
|
"test_snapshot_restore"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bose Soundtouch Python library";
|
|
homepage = "https://github.com/CharlesBlonde/libsoundtouch";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|