mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
36 lines
670 B
Nix
36 lines
670 B
Nix
{ lib
|
|
, python3Packages
|
|
, fetchPypi
|
|
, mopidy
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "Mopidy-Tidal";
|
|
version = "0.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ekqhzKyU2WqTOeRR1ZSZA9yW3UXsLBsC2Bk6FZrQgmc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
python3Packages.tidalapi
|
|
];
|
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
];
|
|
|
|
pytestFlagsArray = [ "tests/" ];
|
|
|
|
meta = with lib; {
|
|
description = "Mopidy extension for playing music from Tidal";
|
|
homepage = "https://github.com/tehkillerbee/mopidy-tidal";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|
|
|
|
|