Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

vcsi: 7.0.13 -> 7.0.16

+12 -6
+12 -6
pkgs/tools/video/vcsi/default.nix
··· 1 - { lib, python3Packages, fetchPypi, ffmpeg }: 1 + { lib, python3Packages, fetchFromGitHub, ffmpeg }: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "vcsi"; 5 - version = "7.0.13"; 5 + version = "7.0.16"; 6 6 7 - src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "01qwbb2l8gwf622zzhh0kzdzw3njvsdwmndwn01i9bn4qm5cas8r"; 7 + format = "pyproject"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "amietn"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + hash = "sha256-I0o6GX/TNMfU+rQtSqReblRplXPynPF6m2zg0YokmtI="; 10 14 }; 15 + 16 + nativeBuildInputs = [ python3Packages.poetry-core ]; 11 17 12 18 propagatedBuildInputs = with python3Packages; [ 13 19 numpy ··· 26 32 description = "Create video contact sheets"; 27 33 homepage = "https://github.com/amietn/vcsi"; 28 34 license = licenses.mit; 29 - maintainers = with maintainers; [ dandellion ]; 35 + maintainers = with maintainers; [ dandellion zopieux ]; 30 36 }; 31 37 }