delete vcsi: upstreamed

This commit is contained in:
Daniel Olsen 2020-09-05 01:44:30 +02:00
parent 57fa425a00
commit d645e4a8c8
2 changed files with 0 additions and 35 deletions

View File

@ -28,7 +28,6 @@ in
matrix-corporal = pkgs.callPackage ./pkgs/matrix-corporal { };
rank_photos = pkgs.callPackage ./pkgs/rank_photos { };
vcsi = pkgs.callPackage ./pkgs/vcsi {};
grav1 = pkgs.callPackage ./pkgs/grav1/server.nix { wsgiserver = wsgiserver; setuptools = pkgs.python3Packages.setuptools; };
grav1c = pkgs.callPackage ./pkgs/grav1/client.nix { };

View File

@ -1,34 +0,0 @@
{ stdenv, lib, fetchFromGitHub, python3Packages, python3, ffmpeg }:
let
version = "7.0.12";
in
python3Packages.buildPythonApplication {
pname = "vcsi";
inherit version;
src = fetchFromGitHub {
owner = "amietn";
repo = "vcsi";
rev = "0957a7b54cefe6119432a6e96dc17c46a6af286a";
sha256 = "0f2iz6idn77qz546xai9q6kn104jbra8ahkc46bpb6a296c11bdm";
};
propagatedBuildInputs = with python3Packages; [
numpy
pillow
jinja2
texttable
parsedatetime
nose
] ++ [ ffmpeg ];
meta = with lib; {
description = "Create video contact sheets";
homepage = "https://github.com/amietn/vcsi";
license = licenses.mit;
};
}