pythonPackages.moviepy: Requires Py3.4 since 1.0.0

"only Python 3.4+ from v.1.0"
This commit is contained in:
Daniel Schaefer 2019-04-19 17:10:20 +02:00
parent 951c5b86e9
commit 2b4bc3769c

View File

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, numpy
, decorator
, imageio
@ -15,6 +16,8 @@ buildPythonPackage rec {
pname = "moviepy";
version = "1.0.0";
disabled = !(pythonAtLeast "3.4");
src = fetchPypi {
inherit pname version;
sha256 = "16c7ffca23d90c76dd7b163f648c8166dfd589b7c180b8ff75aa327ae0a2fc6d";