2021-04-18 04:10:35 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromSourcehut
|
2022-05-05 23:09:09 +01:00
|
|
|
, buildGoModule
|
2021-04-18 04:10:35 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, srht
|
|
|
|
, redis
|
|
|
|
, alembic
|
|
|
|
, pystache
|
|
|
|
, pytest
|
|
|
|
, factory_boy
|
|
|
|
, python
|
2022-05-05 23:09:09 +01:00
|
|
|
, unzip
|
2021-04-18 04:10:35 +01:00
|
|
|
}:
|
2019-01-22 02:01:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "todosrht";
|
2022-05-05 23:09:09 +01:00
|
|
|
version = "0.71.0";
|
2019-01-22 02:01:52 +00:00
|
|
|
|
2021-04-18 04:10:35 +01:00
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~sircmpwn";
|
|
|
|
repo = "todo.sr.ht";
|
2019-01-22 02:01:52 +00:00
|
|
|
rev = version;
|
2022-05-05 23:09:09 +01:00
|
|
|
sha256 = "sha256-IIZKN006UIrdcxF+LYkUtc97QoCnWqzX8036vMctWHY=";
|
2019-01-22 02:01:52 +00:00
|
|
|
};
|
|
|
|
|
2022-02-11 23:42:12 +00:00
|
|
|
patches = [
|
|
|
|
# Revert change breaking Unix socket support for Redis
|
|
|
|
patches/redis-socket/todo/0001-Revert-Add-webhook-queue-monitoring.patch
|
|
|
|
];
|
2022-05-05 23:09:09 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "all: api" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
|
todosrht-api = buildGoModule ({
|
|
|
|
inherit src version;
|
|
|
|
pname = "todosrht-api";
|
|
|
|
modRoot = "api";
|
|
|
|
vendorSha256 = "sha256-ttGT7lUh8O+9KvbaEGWUsthefXQ2ATeli0tnlXCjZFk=";
|
|
|
|
} // import ./fix-gqlgen-trimpath.nix {inherit unzip;});
|
2022-02-11 23:42:12 +00:00
|
|
|
|
2019-01-22 02:01:52 +00:00
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
srht
|
|
|
|
redis
|
|
|
|
alembic
|
|
|
|
pystache
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export PKGVER=${version}
|
2021-04-18 04:10:35 +01:00
|
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
2019-01-22 02:01:52 +00:00
|
|
|
'';
|
|
|
|
|
2022-05-05 23:09:09 +01:00
|
|
|
postInstall = ''
|
|
|
|
ln -s ${todosrht-api}/bin/api $out/bin/todosrht-api
|
|
|
|
'';
|
|
|
|
|
2019-12-30 01:04:16 +00:00
|
|
|
# pytest tests fail
|
2019-10-05 16:00:49 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
factory_boy
|
|
|
|
];
|
|
|
|
|
2019-12-30 01:04:16 +00:00
|
|
|
dontUseSetuptoolsCheck = true;
|
2021-08-15 22:11:47 +01:00
|
|
|
pythonImportsCheck = [ "todosrht" ];
|
2019-01-22 02:01:52 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://todo.sr.ht/~sircmpwn/todo.sr.ht";
|
2019-01-22 02:01:52 +00:00
|
|
|
description = "Ticket tracking service for the sr.ht network";
|
2021-08-15 21:54:11 +01:00
|
|
|
license = licenses.agpl3Only;
|
2019-01-22 02:01:52 +00:00
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
|
|
|
}
|