blob: bf91f8e449f2d0a28f99a5e1b0d980ab63ffc7f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitLab,
pydbus,
pygobject3,
setuptools,
strenum,
}:
buildPythonPackage rec {
pname = "mprisify";
version = "1.0.0";
pyproject = true;
src = fetchFromGitLab {
owner = "zehkira";
repo = "mprisify";
tag = "v${version}";
hash = "sha256-05i3N61cqRgGaBjYOEhxeCSV2wDh9yMaXTvEZ/JGrZo=";
};
build-system = [ setuptools ];
dependencies = [
pydbus
pygobject3
strenum
];
pythonImportsCheck = [ "mprisify" ];
meta = {
description = "Python MPRIS server library for Linux media player apps";
homepage = "https://gitlab.com/zehkira/mprisify";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ quadradical ];
};
}
|