mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
65f033d93f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-imageio-ffmpeg/versions
29 lines
541 B
Nix
29 lines
541 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "imageio-ffmpeg";
|
|
version = "0.3.0";
|
|
|
|
src = fetchPypi {
|
|
sha256 = "1hnn00xz9jyksnx1g0r1icv6ynbdnxq4cfnmb58ikg6ymi20al18";
|
|
inherit pname version;
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
# No test infrastructure in repository.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "FFMPEG wrapper for Python";
|
|
homepage = https://github.com/imageio/imageio-ffmpeg;
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.pmiddend ];
|
|
};
|
|
|
|
}
|