Merge pull request #263997 from zopieux/vcsi-pyproject
vcsi: 7.0.13 -> 7.0.16
This commit is contained in:
commit
2c8817a5e2
1 changed files with 12 additions and 6 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue