os/pkgs/mopidy-jellyfin.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
717 B
Nix
Raw Normal View History

2023-01-28 20:49:10 +00:00
self:
with self; let
websocket-client = python3.pkgs.buildPythonPackage rec {
2021-05-30 19:10:28 +00:00
pname = "websocket-client";
2022-01-16 16:09:18 +00:00
version = "1.2.1";
2021-05-30 19:10:28 +00:00
doCheck = false;
src = python3.pkgs.fetchPypi {
2021-05-30 19:10:28 +00:00
inherit pname version;
2022-01-16 16:09:18 +00:00
sha256 = "sha256-jftxXYqZL1cS//jIQ62ulOIrIqmbLF5rDsShqYHMTg0=";
2021-05-30 19:10:28 +00:00
};
};
in
python3.pkgs.buildPythonPackage rec {
2023-01-28 20:49:10 +00:00
pname = "Mopidy-Jellyfin";
version = "1.0.2";
doCheck = false;
propagatedBuildInputs = with python3.pkgs; [
2023-01-28 20:49:10 +00:00
unidecode
websocket-client
requests
setuptools
pykka
mopidy
];
src = python3.pkgs.fetchPypi {
2023-01-28 20:49:10 +00:00
inherit pname version;
sha256 = "sha256-5XimIIQSpvNyQbSOFtSTkA0jhA0V68BbyQEQNnov+0g=";
};
}