nixpkgs/pkgs/development/python-modules/mpv/default.nix

34 lines
863 B
Nix
Raw Normal View History

2019-08-09 00:00:24 +01:00
{ stdenv, buildPythonPackage, fetchFromGitHub, python, isPy27
, mpv
}:
buildPythonPackage rec {
pname = "mpv";
2020-07-18 10:45:14 +01:00
version = "0.4.7";
2019-08-09 00:00:24 +01:00
disabled = isPy27;
2019-08-09 00:00:24 +01:00
src = fetchFromGitHub {
owner = "jaseg";
repo = "python-mpv";
rev = "v${version}";
2020-07-18 10:45:14 +01:00
sha256 = "1gq2ynzbpmc7bv066ddv2f4rnmvfsi7034vhf9ffp7yzbixf6ys8";
};
2019-08-09 00:00:24 +01:00
buildInputs = [ mpv ];
postPatch = ''
substituteInPlace mpv.py \
--replace "sofile = ctypes.util.find_library('mpv')" \
'sofile = "${mpv}/lib/libmpv${stdenv.targetPlatform.extensions.sharedLibrary}"'
'';
# tests impure, will error if it can't load libmpv.so
checkPhase = "${python.interpreter} -c 'import mpv'";
meta = with stdenv.lib; {
description = "A python interface to the mpv media player";
homepage = "https://github.com/jaseg/python-mpv";
license = licenses.agpl3;
};
}