pythonPackages.mpv: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 18:30:45 -04:00
committed by Frederik Rietdijk
parent 8edd20b7ae
commit b11138d594
2 changed files with 26 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs
}:
buildPythonPackage rec {
pname = "mpv";
version = "0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0b9kd70mshdr713f3l1lbnz1q0vlg2y76h5d8liy1bzqm7hjcgfw";
};
buildInputs = [ pkgs.mpv ];
patchPhase = "substituteInPlace mpv.py --replace libmpv.so ${pkgs.mpv}/lib/libmpv.so";
meta = with stdenv.lib; {
description = "A python interface to the mpv media player";
homepage = "https://github.com/jaseg/python-mpv";
license = licenses.agpl3;
};
}