mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
30 lines
705 B
Nix
30 lines
705 B
Nix
|
{ lib, pythonPackages, mopidy }:
|
||
|
|
||
|
pythonPackages.buildPythonApplication rec {
|
||
|
pname = "Mopidy-Notify";
|
||
|
version = "0.2.0";
|
||
|
|
||
|
src = pythonPackages.fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-lzZupjlS0kbNvsn18serOoMfu0sRb0nRwpowvOPvt/g=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
mopidy
|
||
|
pythonPackages.pydbus
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pythonPackages.pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "mopidy_notify" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/phijor/mopidy-notify";
|
||
|
description = "Mopidy extension for showing desktop notifications on track change";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ lilyinstarlight ];
|
||
|
};
|
||
|
}
|