Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 28 lines 541 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "imageio-ffmpeg"; 9 version = "0.3.0"; 10 11 src = fetchPypi { 12 sha256 = "1hnn00xz9jyksnx1g0r1icv6ynbdnxq4cfnmb58ikg6ymi20al18"; 13 inherit pname version; 14 }; 15 16 disabled = !isPy3k; 17 18 # No test infrastructure in repository. 19 doCheck = false; 20 21 meta = with lib; { 22 description = "FFMPEG wrapper for Python"; 23 homepage = https://github.com/imageio/imageio-ffmpeg; 24 license = licenses.bsd2; 25 maintainers = [ maintainers.pmiddend ]; 26 }; 27 28}