texstudio: 4.8.4 -> 4.8.5 (#365076)
[NixPkgs.git] / pkgs / applications / audio / mopidy / tidal.nix
blob5548130665cb9dbfb8b7bf8c8d40dbd73024fa3a
2   lib,
3   python3Packages,
4   fetchPypi,
5   mopidy,
6 }:
8 python3Packages.buildPythonApplication rec {
9   pname = "Mopidy-Tidal";
10   version = "0.3.2";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-ekqhzKyU2WqTOeRR1ZSZA9yW3UXsLBsC2Bk6FZrQgmc=";
15   };
17   propagatedBuildInputs = [
18     mopidy
19     python3Packages.tidalapi
20   ];
22   nativeCheckInputs = with python3Packages; [
23     pytestCheckHook
24     pytest-mock
25   ];
27   pytestFlagsArray = [ "tests/" ];
29   meta = with lib; {
30     description = "Mopidy extension for playing music from Tidal";
31     homepage = "https://github.com/tehkillerbee/mopidy-tidal";
32     license = licenses.mit;
33     maintainers = [ ];
34   };