Files
nixpkgs/pkgs/development/python-modules/av/default.nix
Jonathan Ringer 8db288ee06 pythonPackages.av: disable for python2
Uses shlex commands which aren't present in python2
```
      from shlex import quote
  ImportError: cannot import name quote
```
2020-06-16 13:32:05 -07:00

34 lines
659 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, numpy
, ffmpeg_4
, pkgconfig
}:
buildPythonPackage rec {
pname = "av";
version = "8.0.2";
disabled = isPy27; # setup.py no longer compatible
src = fetchPypi {
inherit pname version;
sha256 = "a3bba6bf68766b8a1a057f28869c7078cf0a1ec3207c7788c2ce8fe6f6bd8267";
};
checkInputs = [ numpy ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ffmpeg_4 ];
# Tests require downloading files from internet
doCheck = false;
meta = {
description = "Pythonic bindings for FFmpeg/Libav";
homepage = "https://github.com/mikeboers/PyAV/";
license = lib.licenses.bsd2;
};
}