7 buildPythonPackage rec {
8 pname = "get-video-properties";
11 src = fetchFromGitHub {
13 repo = "python-get-video-properties";
14 rev = "944c68addbc27e320ebc6313d3f016fb69b5e880";
15 sha256 = "18aslx7amaiw31bl9gambmvzry7hp5nqab6kgp8sg3mz9ih4lzal";
22 substituteInPlace videoprops/__init__.py \
23 --replace "which('ffprobe')" "'${ffmpeg}/bin/ffprobe'"
26 pythonImportsCheck = [ "videoprops" ];
29 description = "Get video properties";
30 homepage = "https://github.com/mvasilkov/python-get-video-properties";
31 license = licenses.mit;
32 maintainers = with maintainers; [ globin ];