sigal: 2.0 -> 2.1 (#88759)

Only build with python at least at 3.6.0
Matthias Beyer 2020-10-05 15:35:37 +02:00 committed by GitHub
parent f6e86e85ff
commit 1d5a8a0eed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -1,14 +1,16 @@
{ lib, python3Packages, ffmpeg_3 }:
python3Packages.buildPythonApplication rec {
version = "2.0";
version = "2.1.1";
pname = "sigal";
src = python3Packages.fetchPypi {
inherit version pname;
sha256 = "0ff8hpihbd30xjy155ksfpypjskilqg4zmyavgvpri8jaf1qpv89";
sha256 = "0l07p457svznirz7qllgyl3qbhiisv7klhz7cbdw6417hxf9bih8";
};
disabled = !(python3Packages.pythonAtLeast "3.6");
checkInputs = with python3Packages; [ pytest ];
propagatedBuildInputs = with python3Packages; [
jinja2
@ -18,6 +20,8 @@ python3Packages.buildPythonApplication rec {
clint
click
blinker
natsort
setuptools_scm
];
makeWrapperArgs = [ "--prefix PATH : ${ffmpeg_3}/bin" ];