Merge pull request #263997 from zopieux/vcsi-pyproject

vcsi: 7.0.13 -> 7.0.16
This commit is contained in:
Mario Rodas 2023-10-31 07:05:26 -05:00 committed by GitHub
commit 2c8817a5e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,20 @@
{ lib, python3Packages, fetchPypi, ffmpeg }:
{ lib, python3Packages, fetchFromGitHub, ffmpeg }:
python3Packages.buildPythonApplication rec {
pname = "vcsi";
version = "7.0.13";
version = "7.0.16";
src = fetchPypi {
inherit pname version;
sha256 = "01qwbb2l8gwf622zzhh0kzdzw3njvsdwmndwn01i9bn4qm5cas8r";
format = "pyproject";
src = fetchFromGitHub {
owner = "amietn";
repo = pname;
rev = "v${version}";
hash = "sha256-I0o6GX/TNMfU+rQtSqReblRplXPynPF6m2zg0YokmtI=";
};
nativeBuildInputs = [ python3Packages.poetry-core ];
propagatedBuildInputs = with python3Packages; [
numpy
pillow
@ -26,6 +32,6 @@ python3Packages.buildPythonApplication rec {
description = "Create video contact sheets";
homepage = "https://github.com/amietn/vcsi";
license = licenses.mit;
maintainers = with maintainers; [ dandellion ];
maintainers = with maintainers; [ dandellion zopieux ];
};
}