pyCA: init at 2.1
This commit is contained in:
parent
fbbfc7a36f
commit
5f5e3a1bf2
30
pkgs/applications/video/pyca/default.nix
Normal file
30
pkgs/applications/video/pyca/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, buildPythonApplication, fetchFromGitHub, pycurl, dateutil, configobj, sqlalchemy, sdnotify, flask }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "pyca";
|
||||||
|
version = "2.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "opencast";
|
||||||
|
repo = "pyCA";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0cvkmdlcax9da9iw4ls73vw0pxvm8wvchab5gwdy9w9ibqdpcmwh";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pycurl
|
||||||
|
dateutil
|
||||||
|
configobj
|
||||||
|
sqlalchemy
|
||||||
|
sdnotify
|
||||||
|
flask
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A fully functional Opencast capture agent written in Python";
|
||||||
|
homepage = https://github.com/opencast/pyCA;
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
maintainers = with maintainers; [ pmiddend ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1579,6 +1579,8 @@ with pkgs;
|
|||||||
|
|
||||||
parallel-rust = callPackage ../tools/misc/parallel-rust { };
|
parallel-rust = callPackage ../tools/misc/parallel-rust { };
|
||||||
|
|
||||||
|
pyCA = python3Packages.callPackage ../applications/video/pyca {};
|
||||||
|
|
||||||
scour = with python3Packages; toPythonApplication scour;
|
scour = with python3Packages; toPythonApplication scour;
|
||||||
|
|
||||||
s2png = callPackage ../tools/graphics/s2png { };
|
s2png = callPackage ../tools/graphics/s2png { };
|
||||||
|
Loading…
Reference in New Issue
Block a user