blob: 0b66d508d1c3af0f23b5f33b03da876e22b5c41c (
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
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
mpv,
setuptools,
}:
buildPythonPackage rec {
pname = "mpv";
version = "1.0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "jaseg";
repo = "python-mpv";
rev = "v${version}";
hash = "sha256-2sYWTzj7+ozezNX0uFdJW+A0K6bwAmiVvqo/lr9UToA=";
};
patches = [
# https://github.com/jellyfin/jellyfin-mpv-shim/issues/448
(fetchpatch {
url = "https://github.com/jaseg/python-mpv/commit/12850b34bd3b64704f8abd30341a647a73719267.patch";
hash = "sha256-2O7w8PeWinCzrigGX3IV+9PVCtU9KCM2UJ32Y1kE6m0=";
})
];
nativeBuildInputs = [ setuptools ];
buildInputs = [ mpv ];
postPatch = ''
substituteInPlace mpv.py \
--replace-fail "sofile = ctypes.util.find_library('mpv')" \
'sofile = "${mpv}/lib/libmpv${stdenv.hostPlatform.extensions.sharedLibrary}"'
'';
pythonImportsCheck = [ "mpv" ];
meta = {
description = "Python interface to the mpv media player";
homepage = "https://github.com/jaseg/python-mpv";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ onny ];
};
}
|