2021-07-03 12:37:24 +01:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }:
|
2018-11-20 09:34:01 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "pyca";
|
|
|
|
version = "2.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opencast";
|
|
|
|
repo = "pyCA";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0cvkmdlcax9da9iw4ls73vw0pxvm8wvchab5gwdy9w9ibqdpcmwh";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pycurl
|
2021-07-03 12:37:24 +01:00
|
|
|
python-dateutil
|
2018-11-20 09:34:01 +00:00
|
|
|
configobj
|
|
|
|
sqlalchemy
|
|
|
|
sdnotify
|
|
|
|
flask
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-20 09:34:01 +00:00
|
|
|
description = "A fully functional Opencast capture agent written in Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/opencast/pyCA";
|
2018-11-20 09:34:01 +00:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ pmiddend ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|