tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
vcsi: 7.0.13 -> 7.0.16
Alexandre Macabies
2 years ago
76008c01
cdd3d850
+12
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
video
vcsi
default.nix
+12
-6
pkgs/tools/video/vcsi/default.nix
···
1
-
{ lib, python3Packages, fetchPypi, ffmpeg }:
2
3
python3Packages.buildPythonApplication rec {
4
pname = "vcsi";
5
-
version = "7.0.13";
6
7
-
src = fetchPypi {
8
-
inherit pname version;
9
-
sha256 = "01qwbb2l8gwf622zzhh0kzdzw3njvsdwmndwn01i9bn4qm5cas8r";
0
0
0
0
10
};
0
0
11
12
propagatedBuildInputs = with python3Packages; [
13
numpy
···
26
description = "Create video contact sheets";
27
homepage = "https://github.com/amietn/vcsi";
28
license = licenses.mit;
29
-
maintainers = with maintainers; [ dandellion ];
30
};
31
}
···
1
+
{ lib, python3Packages, fetchFromGitHub, ffmpeg }:
2
3
python3Packages.buildPythonApplication rec {
4
pname = "vcsi";
5
+
version = "7.0.16";
6
7
+
format = "pyproject";
8
+
9
+
src = fetchFromGitHub {
10
+
owner = "amietn";
11
+
repo = pname;
12
+
rev = "v${version}";
13
+
hash = "sha256-I0o6GX/TNMfU+rQtSqReblRplXPynPF6m2zg0YokmtI=";
14
};
15
+
16
+
nativeBuildInputs = [ python3Packages.poetry-core ];
17
18
propagatedBuildInputs = with python3Packages; [
19
numpy
···
32
description = "Create video contact sheets";
33
homepage = "https://github.com/amietn/vcsi";
34
license = licenses.mit;
35
+
maintainers = with maintainers; [ dandellion zopieux ];
36
};
37
}