69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{ stdenv, fetchgit, buildPythonPackage
|
|
, python
|
|
, srht, redis, alembic, pystache
|
|
, pytest, factory_boy, writeText }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "todosrht";
|
|
version = "0.51.13";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~sircmpwn/todo.sr.ht";
|
|
rev = version;
|
|
sha256 = "19gywq5j7wlpk7j2whm2ivz0z0i3j50n7k7bx29pghndl7l43c18";
|
|
};
|
|
|
|
patches = [
|
|
./use-srht-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
propagatedBuildInputs = [
|
|
srht
|
|
redis
|
|
alembic
|
|
pystache
|
|
];
|
|
|
|
preBuild = ''
|
|
export PKGVER=${version}
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytest
|
|
factory_boy
|
|
];
|
|
|
|
installCheckPhase = let
|
|
config = writeText "config.ini" ''
|
|
[webhooks]
|
|
private-key=K6JupPpnr0HnBjelKTQUSm3Ro9SgzEA2T2Zv472OvzI=
|
|
|
|
[todo.sr.ht]
|
|
origin=http://todo.sr.ht.local
|
|
oauth-client-id=
|
|
oauth-client-secret=
|
|
|
|
[todo.sr.ht::mail]
|
|
posting-domain=
|
|
|
|
[meta.sr.ht]
|
|
origin=http://meta.sr.ht.local
|
|
'';
|
|
in ''
|
|
cp -f ${config} config.ini
|
|
|
|
# pytest tests fail
|
|
# pytest tests/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://todo.sr.ht/~sircmpwn/todo.sr.ht;
|
|
description = "Ticket tracking service for the sr.ht network";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|